src/gui/data/l10n.py
author John Rice <john.rice@sun.com>
Fri, 07 Nov 2008 14:29:17 +0000
changeset 678 0a71653642c7
parent 424 a767ef6bf887
child 679 fa530ea48b41
permissions -rw-r--r--
4464 l10n PM and UM po files need updated

#!/usr/bin/env python
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#

# The following categories are shown in GUI.

def N_(message): return message

l10n_categories = [
  N_("Accessories"),
  N_("Administration and Configuration"),
  N_("Applets"),
  N_("Application and Web Servers"),
  N_("C"),
  N_("C++"),
  N_("Configuration and Preferences"),
  N_("Core"),
  N_("Databases"),
  N_("Databases (System)"),
  N_("Desktop"),
  N_("Display"),
  N_("Distribution Tools"),
  N_("Documentation"),
  N_("Enterprise Management"),
  N_("File Managers"),
  N_("File System"),
  N_("Fonts"),
  N_("GNOME and GTK+"),
  N_("GNU"),
  N_("Games"),
  N_("Graphics and Imaging"),
  N_("Hardware"),
  N_("High Performance Computing"),
  N_("Integrated Development Environments"),
  N_("Internationalization"),
  N_("Internet"),
  N_("Java"),
  N_("Libraries"),
  N_("Libraries (System)"),
  N_("Localizations (Desktop)"),
  N_("Localizations (System)"),
  N_("Media"),
  N_("Networking"),
  N_("Office"),
  N_("Other Languages"),
  N_("Other Peripherals"),
  N_("PHP"),
  N_("Packaging"),
  N_("Perl"),
  N_("Plug-ins and Run-times"),
  N_("Ports"),
  N_("Printing"),
  N_("Python"),
  N_("Ruby"),
  N_("Scripts"),
  N_("Security"),
  N_("Services"),
  N_("Sessions"),
  N_("Shells"),
  N_("Software Management"),
  N_("Sound and Video"),
  N_("Source Code Management"),
  N_("Storage"),
  N_("System"),
  N_("System Utilities"),
  N_("Text Tools"),
  N_("Trusted"),
  N_("Universal Access"),
  N_("Virtualization"),
  N_("Window Managers"),
  N_("X11"),
  N_("X11 (System)"),
  None
]