view locale/roundup.pot @ 7530:ed2bc951277b

Updates for 2.3.0 release.
author John Rouillard <rouilj@ieee.org>
date Wed, 12 Jul 2023 22:59:49 -0400
parents 51fc06fabcee
children a377590eba34
line wrap: on
line source

# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR See Roundup README.txt
# This file is distributed under the same license as the Roundup package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Roundup 2.3.0\n"
"Report-Msgid-Bugs-To: roundup-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2023-07-12 22:51-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"

#: ../roundup/actions.py:49
#, python-format
msgid "You do not have permission to retire or restore the %(classname)s class."
msgstr ""

#: ../roundup/actions.py:65 ../roundup/cgi/actions.py:240
msgid "You may not retire the admin or anonymous user"
msgstr ""

#: ../roundup/admin.py:117
msgid "Have 'display designator' show protected fields: creator. NYI"
msgstr ""

#: ../roundup/admin.py:120
msgid "Set indexer to use when running 'reindex' NYI"
msgstr ""

#: ../roundup/admin.py:123
msgid "Force reopening of tracker when running each command."
msgstr ""

#: ../roundup/admin.py:125
msgid "Show retired items in table, list etc. NYI"
msgstr ""

#: ../roundup/admin.py:126
msgid "Enable verbose output: tracing, descriptions..."
msgstr ""

#: ../roundup/admin.py:138 ../roundup/admin.py:993 ../roundup/admin.py:1603
#: ../roundup/admin.py:1635 ../roundup/admin.py:138:993 :1603:1635
#, python-format
msgid "no such class \"%(classname)s\""
msgstr ""

#: ../roundup/admin.py:150
#, python-format
msgid "argument \"%(arg)s\" not propname=value"
msgstr ""

#: ../roundup/admin.py:163
#, python-format
msgid ""
"Problem: %(message)s\n"
"\n"
msgstr ""

#: ../roundup/admin.py:164
#, python-format
msgid ""
"%(message)sUsage: roundup-admin [options] [<command> <arguments>]\n"
"\n"
"Options:\n"
" -i instance home  -- specify the issue tracker \"home directory\" to "
"administer\n"
" -u                -- the user[:password] to use for commands (default "
"admin)\n"
" -d                -- print full designators not just class id numbers\n"
" -c                -- when outputting lists of data, comma-separate them.\n"
"                      Same as '-S \",\"'.\n"
" -S <string>       -- when outputting lists of data, string-separate them\n"
" -s                -- when outputting lists of data, space-separate them.\n"
"                      Same as '-S \" \"'.\n"
" -V                -- be verbose when importing\n"
" -v                -- report Roundup and Python versions (and quit)\n"
"\n"
" Only one of -s, -c or -S can be specified.\n"
"\n"
"Help:\n"
" roundup-admin -h\n"
" roundup-admin help                       -- this help\n"
" roundup-admin help <command>             -- command-specific help\n"
" roundup-admin help all                   -- all available help\n"
msgstr ""

#: ../roundup/admin.py:191
msgid "Commands: "
msgstr ""

#: ../roundup/admin.py:198
msgid ""
"Commands may be abbreviated as long as the abbreviation\n"
"matches only one command, e.g. l == li == lis == list."
msgstr ""

#: ../roundup/admin.py:227
msgid ""
"\n"
"All commands (except help) require a tracker specifier. This is just\n"
"the path to the roundup tracker you're working with. A roundup tracker\n"
"is where roundup keeps the database and configuration file that defines\n"
"an issue tracker. It may be thought of as the issue tracker's \"home\n"
"directory\". It may be specified in the environment variable TRACKER_HOME\n"
"or on the command line as \"-i tracker\".\n"
"\n"
"A designator is a classname and a nodeid concatenated, eg. bug1, user10, ...\n"
"\n"
"Property values are represented as strings in command arguments and in the\n"
"printed results:\n"
" . Strings are, well, strings.\n"
" . Date values are printed in the full date format in the local time zone,\n"
"   and accepted in the full format or any of the partial formats explained\n"
"   below.\n"
" . Link values are printed as node designators. When given as an argument,\n"
"   node designators and key strings are both accepted.\n"
" . Multilink values are printed as lists of node designators joined\n"
"   by commas.  When given as an argument, node designators and key\n"
"   strings are both accepted; an empty string, a single node, or a list\n"
"   of nodes joined by commas is accepted.\n"
"\n"
"When property values must contain spaces, just surround the value with\n"
"quotes, either ' or \". A single space may also be backslash-quoted. If a\n"
"value must contain a quote character, it must be backslash-quoted or inside\n"
"quotes. Examples:\n"
"           hello world      (2 tokens: hello, world)\n"
"           \"hello world\"    (1 token: hello world)\n"
"           \"Roch'e\" Compaan (2 tokens: Roch'e Compaan)\n"
"           Roch\\'e Compaan  (2 tokens: Roch'e Compaan)\n"
"           address=\"1 2 3\"  (1 token: address=1 2 3)\n"
"           \\\\               (1 token: \\)\n"
"           \\n\\r\\t           (1 token: a newline, carriage-return and tab)\n"
"\n"
"When multiple nodes are specified to the roundup get or roundup set\n"
"commands, the specified properties are retrieved or set on all the listed\n"
"nodes.\n"
"\n"
"When multiple results are returned by the roundup get or roundup find\n"
"commands, they are printed one per line (default) or joined by commas (with\n"
"the -c) option.\n"
"\n"
"Where the command changes data, a login name/password is required. The\n"
"login may be specified as either \"name\" or \"name:password\".\n"
" . ROUNDUP_LOGIN environment variable\n"
" . the -u command-line option\n"
"If either the name or password is not supplied, they are obtained from the\n"
"command-line. (See admin guide before using -u.)\n"
"\n"
"Date format examples:\n"
"  \"2000-04-17.03:45\" means <Date 2000-04-17.08:45:00>\n"
"  \"2000-04-17\" means <Date 2000-04-17.00:00:00>\n"
"  \"01-25\" means <Date yyyy-01-25.00:00:00>\n"
"  \"08-13.22:13\" means <Date yyyy-08-14.03:13:00>\n"
"  \"11-07.09:32:43\" means <Date yyyy-11-07.14:32:43>\n"
"  \"14:25\" means <Date yyyy-mm-dd.19:25:00>\n"
"  \"8:47:11\" means <Date yyyy-mm-dd.13:47:11>\n"
"  \".\" means \"right now\"\n"
"\n"
"Command help:\n"
msgstr ""

#: ../roundup/admin.py:290
#, python-format
msgid "%s:"
msgstr ""

#: ../roundup/admin.py:395 ../roundup/admin.py:1187 ../roundup/admin.py:395:1187
msgid "Templates:"
msgstr ""

#: ../roundup/admin.py:398 ../roundup/admin.py:1197 ../roundup/admin.py:398:1197
msgid "Back ends:"
msgstr ""

#: ../roundup/admin.py:415
msgid ""
"Usage: commit\n"
"        Commit changes made to the database during an interactive session.\n"
"\n"
"        The changes made during an interactive session are not\n"
"        automatically written to the database - they must be committed\n"
"        using this command.\n"
"\n"
"        One-off commands on the command-line are automatically committed if\n"
"        they are successful.\n"
"        "
msgstr ""

#: ../roundup/admin.py:430
msgid ""
"Usage: create classname property=value ...\n"
"        Create a new entry of a given class.\n"
"\n"
"        This creates a new entry of the given class using the property\n"
"        name=value arguments provided on the command line after the \"create"
"\"\n"
"        command.\n"
"        "
msgstr ""

#: ../roundup/admin.py:438 ../roundup/admin.py:512 ../roundup/admin.py:545
#: ../roundup/admin.py:663 ../roundup/admin.py:749 ../roundup/admin.py:807
#: ../roundup/admin.py:852 ../roundup/admin.py:977 ../roundup/admin.py:1020
#: ../roundup/admin.py:1160 ../roundup/admin.py:1287 ../roundup/admin.py:1373
#: ../roundup/admin.py:1484 ../roundup/admin.py:1593 ../roundup/admin.py:1625
#: ../roundup/admin.py:1740 ../roundup/admin.py:1794 ../roundup/admin.py:1839
#: ../roundup/admin.py:438:512 :1020:1160 :1287 :1373:1484 :1593:1625 :1740:1794
#: :1839 :545:663 :749:807 :852:977
msgid "Not enough arguments supplied"
msgstr ""

#: ../roundup/admin.py:458
#, python-format
msgid "%(propname)s (Password): "
msgstr ""

#: ../roundup/admin.py:461
#, python-format
msgid "   %(propname)s (Again): "
msgstr ""

#: ../roundup/admin.py:465
msgid "Sorry, try again..."
msgstr ""

#: ../roundup/admin.py:470
#, python-format
msgid "%(propname)s (%(proptype)s): "
msgstr ""

#: ../roundup/admin.py:489
#, python-format
msgid "you must provide the \"%(propname)s\" property."
msgstr ""

#: ../roundup/admin.py:501
msgid ""
"Usage: display designator[,designator]*\n"
"\n"
"        Show the property values for the given node(s).\n"
"\n"
"        A designator is a classname and a nodeid concatenated,\n"
"        eg. bug1, user10, ...\n"
"\n"
"        This lists the properties and their associated values\n"
"        for the given node.\n"
"        "
msgstr ""

#: ../roundup/admin.py:528
#, python-format
msgid "%(key)s: %(value)s"
msgstr ""

#. grab the directory to export to
#: ../roundup/admin.py:531
msgid ""
"Usage: export [[-]class[,class]] export_dir\n"
"        Export the database to colon-separated-value files.\n"
"        To exclude the files (e.g. for the msg or file class),\n"
"        use the exporttables command.\n"
"\n"
"        Optionally limit the export to just the named classes\n"
"        or exclude the named classes, if the 1st argument starts with '-'.\n"
"\n"
"        This action exports the current data from the database into\n"
"        colon-separated-value files that are placed in the nominated\n"
"        destination directory.\n"
"        "
msgstr ""

#: ../roundup/admin.py:638
msgid ""
"Usage: exporttables [[-]class[,class]] export_dir\n"
"        Export the database to colon-separated-value files, excluding the\n"
"        files below $TRACKER_HOME/db/files/ (which can be archived "
"separately).\n"
"        To include the files, use the export command.\n"
"\n"
"        Optionally limit the export to just the named classes\n"
"        or exclude the named classes, if the 1st argument starts with '-'.\n"
"\n"
"        This action exports the current data from the database into\n"
"        colon-separated-value files that are placed in the nominated\n"
"        destination directory.\n"
"        "
msgstr ""

#: ../roundup/admin.py:653
msgid ""
"Usage: filter classname propname=value ...\n"
"        Find the nodes of the given class with a given property value.\n"
"\n"
"        Find the nodes of the given class with a given property value.\n"
"        Multiple values can be specified by separating them with commas.\n"
"        If property is a string, all values must match. I.E. it's an\n"
"        'and' operation. If the property is a link/multilink any value\n"
"        matches. I.E. an 'or' operation.\n"
"        "
msgstr ""

#: ../roundup/admin.py:696
#, python-format
msgid "Class %(curclassname)s has no property %(pn)s in %(propname)s."
msgstr ""

#: ../roundup/admin.py:734 ../roundup/admin.py:795 ../roundup/admin.py:1307
#: ../roundup/admin.py:1319 ../roundup/admin.py:1859 ../roundup/admin.py:734:795
#: :1307:1319 :1859
#, python-format
msgid "%(classname)s has no property \"%(propname)s\""
msgstr ""

#: ../roundup/admin.py:741
msgid ""
"Usage: find classname propname=value ...\n"
"        Find the nodes of the given class with a given link property value.\n"
"\n"
"        Find the nodes of the given class with a given link property value.\n"
"        The value may be either the nodeid of the linked node, or its key\n"
"        value.\n"
"        "
msgstr ""

#: ../roundup/admin.py:802
msgid ""
"Usage: genconfig <filename>\n"
"        Generate a new tracker config file (ini style) with default\n"
"        values in <filename>.\n"
"        "
msgstr ""

#: ../roundup/admin.py:820
#, python-format
msgid ""
"Changing option\n"
"   'password_pbkdf2_default_rounds'\n"
"from old default of %(old_number)s to new default of %(new_number)s."
msgstr ""

#: ../roundup/admin.py:831
#, python-format
msgid ""
"Update 'password_pbkdf2_default_rounds' to a number equal to or larger\n"
"than %s."
msgstr ""

#: ../roundup/admin.py:842
msgid ""
"Usage: get property designator[,designator]*\n"
"        Get the given property of one or more designator(s).\n"
"\n"
"        A designator is a classname and a nodeid concatenated,\n"
"        eg. bug1, user10, ...\n"
"\n"
"        Retrieves the property value of the nodes specified\n"
"        by the designators.\n"
"        "
msgstr ""

#: ../roundup/admin.py:886 ../roundup/admin.py:904 ../roundup/admin.py:886:904
#, python-format
msgid "property %s is not of type Multilink or Link so -d flag does not apply."
msgstr ""

#: ../roundup/admin.py:914 ../roundup/admin.py:995 ../roundup/admin.py:1637
#: ../roundup/admin.py:914:995 :1637
#, python-format
msgid "no such %(classname)s node \"%(nodeid)s\""
msgstr ""

#: ../roundup/admin.py:917
#, python-format
msgid "no such %(classname)s property \"%(propname)s\""
msgstr ""

#: ../roundup/admin.py:925
msgid ""
"Usage: help topic\n"
"        Give help about topic.\n"
"\n"
"        commands  -- list commands\n"
"        <command> -- help specific to a command\n"
"        initopts  -- init command options\n"
"        all       -- all available help\n"
"        "
msgstr ""

#: ../roundup/admin.py:947
#, python-format
msgid "Sorry, no help for \"%(topic)s\""
msgstr ""

#: ../roundup/admin.py:964
msgid ""
"Usage: history designator [skipquiet]\n"
"        Show the history entries of a designator.\n"
"\n"
"        A designator is a classname and a nodeid concatenated,\n"
"        eg. bug1, user10, ...\n"
"\n"
"        Lists the journal entries viewable by the user for the\n"
"        node identified by the designator. If skipquiet is the\n"
"        second argument, journal entries for quiet properties\n"
"        are not shown.\n"
"        "
msgstr ""

#: ../roundup/admin.py:1000
msgid ""
"Usage: import import_dir\n"
"        Import a database from the directory containing CSV files,\n"
"        two per class to import.\n"
"\n"
"        The files used in the import are:\n"
"\n"
"        <class>.csv\n"
"          This must define the same properties as the class (including\n"
"          having a \"header\" line with those property names.)\n"
"        <class>-journals.csv\n"
"          This defines the journals for the items being imported.\n"
"\n"
"        The imported nodes will have the same nodeid as defined in the\n"
"        import file, thus replacing any existing content.\n"
"\n"
"        The new nodes are added to the existing database - if you want to\n"
"        create a new database using the imported data, then create a new\n"
"        database (or, tediously, retire all the old data.)\n"
"        "
msgstr ""

#: ../roundup/admin.py:1079
msgid ""
"Usage: importtables export_dir\n"
"\n"
"        This imports the database tables exported using exporttables.\n"
"        "
msgstr ""

#. password
#: ../roundup/admin.py:1086
msgid ""
"Usage: initialise [adminpw]\n"
"        Initialise a new Roundup tracker.\n"
"\n"
"        The administrator details will be set at this step.\n"
"\n"
"        Execute the tracker's initialisation function dbinit.init()\n"
"        "
msgstr ""

#: ../roundup/admin.py:1100
msgid "Admin Password: "
msgstr ""

#: ../roundup/admin.py:1101
msgid "       Confirm: "
msgstr ""

#: ../roundup/admin.py:1105
msgid "Instance home does not exist"
msgstr ""

#: ../roundup/admin.py:1109
msgid "Instance has not been installed"
msgstr ""

#: ../roundup/admin.py:1117
msgid ""
"WARNING: The database is already initialised!\n"
"If you re-initialise it, you will lose all the data!\n"
"Erase it? Y/N: "
msgstr ""

#: ../roundup/admin.py:1137
msgid ""
"Usage: install [template [backend [key=val[,key=val]]]]\n"
"        Install a new Roundup tracker.\n"
"\n"
"        The command will prompt for the tracker home directory\n"
"        (if not supplied through TRACKER_HOME or the -i option).\n"
"        The template and backend may be specified on the command-line\n"
"        as arguments, in that order.\n"
"\n"
"        Command line arguments following the backend allows you to\n"
"        pass initial values for config options.  For example, passing\n"
"        \"web_http_auth=no,rdbms_user=dinsdale\" will override defaults\n"
"        for options http_auth in section [web] and user in section [rdbms].\n"
"        Please be careful to not use spaces in this argument! (Enclose\n"
"        whole argument in quotes if you need spaces in option value).\n"
"\n"
"        The initialise command must be called after this command in order\n"
"        to initialise the tracker's database. You may edit the tracker's\n"
"        initial database contents before running that command by editing\n"
"        the tracker's dbinit.py module init() function.\n"
"\n"
"        See also initopts help.\n"
"        "
msgstr ""

#: ../roundup/admin.py:1166
#, python-format
msgid "Instance home parent directory \"%(parent)s\" does not exist"
msgstr ""

#: ../roundup/admin.py:1175
#, python-format
msgid ""
"WARNING: There appears to be a tracker in \"%(tracker_home)s\"!\n"
"If you re-install it, you will lose all the data!\n"
"Erase it? Y/N: "
msgstr ""

#: ../roundup/admin.py:1188
msgid "Select template"
msgstr ""

#: ../roundup/admin.py:1198
msgid "Select backend"
msgstr ""

#: ../roundup/admin.py:1209
#, python-format
msgid "Error in configuration settings: \"%s\""
msgstr ""

#: ../roundup/admin.py:1240
#, python-format
msgid ""
"\n"
"---------------------------------------------------------------------------\n"
" You should now edit the tracker configuration file:\n"
"   %(config_file)s"
msgstr ""

#: ../roundup/admin.py:1250
msgid " ... at a minimum, you must set following options:"
msgstr ""

#: ../roundup/admin.py:1255
#, python-format
msgid ""
"\n"
" If you wish to modify the database schema,\n"
" you should also edit the schema file:\n"
"   %(database_config_file)s\n"
" You may also change the database initialisation file:\n"
"   %(database_init_file)s\n"
" ... see the documentation on customizing for more information.\n"
"\n"
" You MUST run the \"roundup-admin initialise\" command once you've performed\n"
" the above steps.\n"
"---------------------------------------------------------------------------\n"
msgstr ""

#: ../roundup/admin.py:1272
msgid ""
"Usage: list classname [property]\n"
"        List the instances of a class.\n"
"\n"
"        Lists all instances of the given class. If the property is not\n"
"        specified, the  \"label\" property is used. The label property is\n"
"        tried in order: the key, \"name\", \"title\" and then the first\n"
"        property, alphabetically.\n"
"\n"
"        With -c, -S or -s print a list of item id's if no property\n"
"        specified.  If property specified, print list of that property\n"
"        for every class instance.\n"
"        "
msgstr ""

#: ../roundup/admin.py:1285
msgid "Too many arguments supplied"
msgstr ""

#: ../roundup/admin.py:1321
#, python-format
msgid "%(nodeid)4s: %(value)s"
msgstr ""

#: ../roundup/admin.py:1325
msgid ""
"Usage: migrate\n"
"\n"
"        Update a tracker's database to be compatible with the Roundup\n"
"        codebase.\n"
"\n"
"        You should run the \"migrate\" command for your tracker once\n"
"        you've installed the latest codebase.\n"
"\n"
"        Do this before you use the web, command-line or mail interface\n"
"        and before any users access the tracker.\n"
"\n"
"        This command will respond with either \"Tracker updated\" (if\n"
"        you've not previously run it on an RDBMS backend) or \"No\n"
"        migration action required\" (if you have run it, or have used\n"
"        another interface to the tracker, or possibly because you are\n"
"        using anydbm).\n"
"\n"
"        It's safe to run this even if it's not required, so just get\n"
"        into the habit.\n"
"        "
msgstr ""

#: ../roundup/admin.py:1346
#, python-format
msgid "Tracker updated to schema version %s."
msgstr ""

#: ../roundup/admin.py:1350
#, python-format
msgid "No migration action required. At schema version %s."
msgstr ""

#: ../roundup/admin.py:1355
msgid ""
"Usage: pack period | date\n"
"\n"
"        Remove journal entries older than a period of time specified or\n"
"        before a certain date.\n"
"\n"
"        A period is specified using the suffixes \"y\", \"m\", and \"d\". "
"The\n"
"        suffix \"w\" (for \"week\") means 7 days.\n"
"\n"
"              \"3y\" means three years\n"
"              \"2y 1m\" means two years and one month\n"
"              \"1m 25d\" means one month and 25 days\n"
"              \"2w 3d\" means two weeks and three days\n"
"\n"
"        Date format is \"YYYY-MM-DD\" eg:\n"
"            2001-01-01\n"
"\n"
"        "
msgstr ""

#: ../roundup/admin.py:1383
msgid "Invalid format"
msgstr ""

#: ../roundup/admin.py:1394
msgid ""
"Usage: perftest [mode] [arguments]*\n"
"\n"
"        Time operations in Roundup. Supported arguments:\n"
"\n"
"            [password] [rounds=<integer>] [scheme=<scheme>]\n"
"\n"
"        'password' is the default mode.  The tracker's config.ini\n"
"        setting for 'password_pbkdf2_default_rounds' is the default\n"
"        value for 'rounds'. On the command line, 'rounds' can include\n"
"        thousands separator of ',' or '.'.  'scheme' is the default\n"
"        coded into Roundup. List supported schemes by using 'scheme='.\n"
"\n"
"        "
msgstr ""

#: ../roundup/admin.py:1427
msgid "Invalid 'rounds'. Must be larger than 999."
msgstr ""

#: ../roundup/admin.py:1431
#, python-format
msgid "Invalid 'rounds'. It must be an integer not: %s"
msgstr ""

#: ../roundup/admin.py:1458
msgid "scheme does not support rounds."
msgstr ""

#: ../roundup/admin.py:1461
#, python-format
msgid "Hash time: %(time)0.9f seconds, scheme: %(scheme)s, rounds: %(rounds)s"
msgstr ""

#: ../roundup/admin.py:1467
msgid ""
"Usage: pragma setting=value | 'list'\n"
"        Set internal admin settings to a value. E.G.\n"
"\n"
"            pragma verbose=True\n"
"            pragma verbose=yes\n"
"            pragma verbose=on\n"
"            pragma verbose=1\n"
"\n"
"         will turn on verbose mode for roundup-admin.\n"
"\n"
"            pragma list\n"
"\n"
"         will show all settings and their current values. If verbose\n"
"         is enabled hidden settings and descriptions will be shown.\n"
"        "
msgstr ""

#: ../roundup/admin.py:1491
#, python-format
msgid "Argument must be setting=value, was given: %s."
msgstr ""

#: ../roundup/admin.py:1494
msgid "Current settings and values (NYI - not yet implemented):"
msgstr ""

#: ../roundup/admin.py:1507
#, python-format
msgid "Unknown setting %s."
msgstr ""

#: ../roundup/admin.py:1516
#, python-format
msgid "Incorrect value for boolean setting %(setting)s: %(value)s."
msgstr ""

#: ../roundup/admin.py:1523
#, python-format
msgid "Incorrect value for integer setting %(setting)s: %(value)s."
msgstr ""

#: ../roundup/admin.py:1529
#, python-format
msgid "Internal error: pragma can not handle values of type: %s"
msgstr ""

#: ../roundup/admin.py:1539
msgid ""
"Usage: reindex [classname|classname:#-#|designator]*\n"
"        Re-generate a tracker's search indexes.\n"
"\n"
"        This will re-generate the search indexes for a tracker.\n"
"        This will typically happen automatically.\n"
"\n"
"        You can incrementally reindex using an argument like:\n"
"\n"
"            reindex issue:23-1000\n"
"\n"
"        to reindex issue class items 23-1000. Missing items\n"
"        are reported but do not stop indexing of the range.\n"
"        "
msgstr ""

#: ../roundup/admin.py:1562
#, python-format
msgid "no such item \"%(designator)s\""
msgstr ""

#: ../roundup/admin.py:1572
#, python-format
msgid "no such item \"%(class)s%(id)s\""
msgstr ""

#: ../roundup/admin.py:1584
msgid ""
"Usage: restore designator[,designator]*\n"
"        Restore the retired node specified by designator.\n"
"\n"
"        A designator is a classname and a nodeid concatenated,\n"
"        eg. bug1, user10, ...\n"
"\n"
"        The given nodes will become available for users again.\n"
"        "
msgstr ""

#: ../roundup/admin.py:1609
msgid "no such %(classname)s node \" % (nodeid)s\""
msgstr ""

#: ../roundup/admin.py:1615
msgid ""
"Usage: retire designator[,designator]*\n"
"        Retire the node specified by designator.\n"
"\n"
"        A designator is a classname and a nodeid concatenated,\n"
"        eg. bug1, user10, ...\n"
"\n"
"        This action indicates that a particular node is not to be retrieved\n"
"        by the list or find commands, and its key value may be re-used.\n"
"        "
msgstr ""

#: ../roundup/admin.py:1643
msgid ""
"Usage: rollback\n"
"        Undo all changes that are pending commit to the database.\n"
"\n"
"        The changes made during an interactive session are not\n"
"        automatically written to the database - they must be committed\n"
"        manually. This command undoes all those changes, so a commit\n"
"        immediately after would make no changes to the database.\n"
"        "
msgstr ""

#: ../roundup/admin.py:1656
msgid ""
"Usage: security [Role name]\n"
"\n"
"             Display the Permissions available to one or all Roles.\n"
"             Also validates that any properties defined in a\n"
"             permission are valid.\n"
"\n"
"             Run this after changing your permissions to catch\n"
"             typos.\n"
"        "
msgstr ""

#: ../roundup/admin.py:1670
#, python-format
msgid "No such Role \"%(role)s\"\n"
msgstr ""

#: ../roundup/admin.py:1676
#, python-format
msgid "New Web users get the Roles \"%(role)s\"\n"
msgstr ""

#: ../roundup/admin.py:1679
#, python-format
msgid "New Web users get the Role \"%(role)s\"\n"
msgstr ""

#: ../roundup/admin.py:1683
#, python-format
msgid "New Email users get the Roles \"%(role)s\"\n"
msgstr ""

#: ../roundup/admin.py:1685
#, python-format
msgid "New Email users get the Role \"%(role)s\"\n"
msgstr ""

#: ../roundup/admin.py:1688
#, python-format
msgid "Role \"%(name)s\":\n"
msgstr ""

#: ../roundup/admin.py:1694
msgid " %(description)s (%(name)s for \"%(klass)s\""
msgstr ""

#: ../roundup/admin.py:1694
#, python-format
msgid " %(description)s (%(name)s for \"%(klass)s\": %(properties)s only)\n"
msgstr ""

#: ../roundup/admin.py:1707
#, python-format
msgid ""
"\n"
"  **Invalid properties for %(class)s: %(props)s\n"
"\n"
msgstr ""

#: ../roundup/admin.py:1713
#, python-format
msgid " %(description)s (%(name)s for \"%(klass)s\" only)\n"
msgstr ""

#: ../roundup/admin.py:1716
#, python-format
msgid " %(description)s (%(name)s)\n"
msgstr ""

#: ../roundup/admin.py:1720
msgid ""
"Usage: set items property=value [property=value ...]\n"
"        Set the given properties of one or more items(s).\n"
"\n"
"        The items are specified as a class or as a comma-separated\n"
"        list of item designators (ie \"designator[,designator,...]\").\n"
"\n"
"        A designator is a classname and a nodeid concatenated,\n"
"        eg. bug1, user10, ...\n"
"\n"
"        This command sets the properties to the values for all\n"
"        designators given. If a class is used, the property will be\n"
"        set for all items in the class. If the value is missing\n"
"        (ie. \"property=\") then the property is un-set. If the property\n"
"        is a multilink, you specify the linked ids for the multilink\n"
"        as comma-separated numbers (ie \"1,2,3\").\n"
"\n"
"        "
msgstr ""

#: ../roundup/admin.py:1788
msgid ""
"Usage: specification classname\n"
"        Show the properties for a classname.\n"
"\n"
"        This lists the properties for a given class.\n"
"        "
msgstr ""

#: ../roundup/admin.py:1804
#, python-format
msgid "%(key)s: %(value)s (key property)\n"
msgstr ""

#: ../roundup/admin.py:1807
#, python-format
msgid "%(key)s: %(value)s\n"
msgstr ""

#: ../roundup/admin.py:1810
msgid ""
"Usage: table classname [property[,property]*]\n"
"        List the instances of a class in tabular form.\n"
"\n"
"        Lists all instances of the given class. If the properties are not\n"
"        specified, all properties are displayed. By default, the column\n"
"        widths are the width of the largest value. The width may be\n"
"        explicitly defined by defining the property as \"name:width\".\n"
"        For example::\n"
"\n"
"          roundup> table priority id,name:10\n"
"          Id Name\n"
"          1  fatal-bug\n"
"          2  bug\n"
"          3  usability\n"
"          4  feature\n"
"\n"
"        Also to make the width of the column the width of the label,\n"
"        leave a trailing : without a width on the property. For example::\n"
"\n"
"          roundup> table priority id,name:\n"
"          Id Name\n"
"          1  fata\n"
"          2  bug\n"
"          3  usab\n"
"          4  feat\n"
"\n"
"        will result in a the 4 character wide \"Name\" column.\n"
"        "
msgstr ""

#: ../roundup/admin.py:1854
#, python-format
msgid "\"%(spec)s\" not name:width"
msgstr ""

#: ../roundup/admin.py:1876
#, python-format
msgid "\"%(spec)s\" does not have an integer width: \"%(width)s\""
msgstr ""

#: ../roundup/admin.py:1912
msgid ""
"Usage: templates [trace_search]\n"
"        List templates and their installed directories.\n"
"\n"
"        With trace_search also list all directories that are\n"
"        searched for templates.\n"
"        "
msgstr ""

#: ../roundup/admin.py:1940
msgid ""
"Usage: updateconfig <filename>\n"
"        Generate an updated tracker config file (ini style) in\n"
"        <filename>. Use current settings from existing roundup\n"
"        tracker in tracker home.\n"
"        "
msgstr ""

#: ../roundup/admin.py:1948 ../roundup/cgi/actions.py:886
#: ../roundup/cgi/actions.py:897 ../roundup/cgi/actions.py:1099
#: ../roundup/cgi/actions.py:1113 ../roundup/cgi/actions.py:886:897 :1099:1113
#, python-format
msgid "Error: %s"
msgstr ""

#: ../roundup/admin.py:1976
#, python-format
msgid "Unknown command \"%(command)s\" (\"help commands\" for a list)"
msgstr ""

#: ../roundup/admin.py:1982
#, python-format
msgid "Multiple commands match \"%(command)s\": %(list)s"
msgstr ""

#: ../roundup/admin.py:1998
msgid "Enter tracker home: "
msgstr ""

#: ../roundup/admin.py:2025 ../roundup/admin.py:2029
#: ../roundup/admin.py:2025:2029
#, python-format
msgid "Error: Couldn't open tracker: %(message)s"
msgstr ""

#: ../roundup/admin.py:2062
#, python-format
msgid ""
"Roundup %s ready for input.\n"
"Type \"help\" for help."
msgstr ""

#: ../roundup/admin.py:2067
msgid "Note: command history and editing not available"
msgstr ""

#: ../roundup/admin.py:2073
msgid "exit..."
msgstr ""

#: ../roundup/admin.py:2086
msgid "There are unsaved changes. Commit them (y/N)? "
msgstr ""

#: ../roundup/backends/back_anydbm.py:215
#: ../roundup/backends/rdbms_common.py:928
#, python-format
msgid "Class \"%s\" already defined."
msgstr ""

#: ../roundup/backends/back_anydbm.py:280 ../roundup/backends/sessions_dbm.py:56
msgid "Couldn't identify database type"
msgstr ""

#: ../roundup/backends/back_anydbm.py:314
#, python-format
msgid ""
"Couldn't open database - the required module '%s' (as dbm.gnu) is not "
"available"
msgstr ""

#: ../roundup/backends/back_anydbm.py:318
#, python-format
msgid "Couldn't open database - the required module '%s' is not available"
msgstr ""

#: ../roundup/backends/back_anydbm.py:871 ../roundup/backends/back_anydbm.py:884
#: ../roundup/backends/back_anydbm.py:1158
#: ../roundup/backends/back_anydbm.py:1193
#: ../roundup/backends/back_anydbm.py:1422
#: ../roundup/backends/back_anydbm.py:1440
#: ../roundup/backends/back_anydbm.py:1487
#: ../roundup/backends/back_anydbm.py:2113
#: ../roundup/backends/back_anydbm.py:871:884
#: ../roundup/backends/rdbms_common.py:1708
#: ../roundup/backends/rdbms_common.py:1955
#: ../roundup/backends/rdbms_common.py:2194
#: ../roundup/backends/rdbms_common.py:2214
#: ../roundup/backends/rdbms_common.py:2267
#: ../roundup/backends/rdbms_common.py:3219
#: ../roundup/backends/rdbms_common.py:1708:1955 :1158:1193 :1422:1440 :1487
#: :2113 :2194:2214 :2267:3219
msgid "Database open read-only"
msgstr ""

#: ../roundup/backends/indexer_postgresql_fts.py:113
msgid ""
"You have non-word/operator characters \"<>!&|()*\" in your query. Did you "
"want to do a tsquery search and forgot to start it with \"ts:\"?"
msgstr ""

#: ../roundup/backends/indexer_postgresql_fts.py:145
#, python-format
msgid ""
"Check tracker config.ini for a bad indexer_language setting. Error is: %s"
msgstr ""

#: ../roundup/backends/indexer_sqlite_fts.py:133
msgid ""
"Search failed. Try quoting any terms that include a '-' and retry the search."
msgstr ""

#: ../roundup/backends/indexer_xapian.py:41
#, python-format
msgid "Unable to get lock after 10 retries on %s."
msgstr ""

#: ../roundup/backends/rdbms_common.py:632
#, python-format
msgid "ALTER operation disallowed: %(old)r -> %(new)r."
msgstr ""

#: ../roundup/backends/rdbms_common.py:867
#, python-format
msgid "CREATE operation disallowed: \"%s\"."
msgstr ""

#: ../roundup/backends/rdbms_common.py:884
#, python-format
msgid "DROP operation disallowed: \"%s\"."
msgstr ""

#: ../roundup/backends/rdbms_common.py:1851
msgid "create"
msgstr ""

#: ../roundup/backends/rdbms_common.py:2026
msgid "unlink"
msgstr ""

#: ../roundup/backends/rdbms_common.py:2030
msgid "link"
msgstr ""

#: ../roundup/backends/rdbms_common.py:2175
msgid "set"
msgstr ""

#: ../roundup/backends/rdbms_common.py:2204
msgid "retired"
msgstr ""

#: ../roundup/backends/rdbms_common.py:2234
msgid "restored"
msgstr ""

#: ../roundup/backends/sessions_redis.py:78
#: ../roundup/backends/sessions_redis.py:97
#: ../roundup/backends/sessions_redis.py:78:97
#, python-format
msgid "Key %(key)s not found in %(name)s database."
msgstr ""

#: ../roundup/backends/sessions_redis.py:193
#, python-format
msgid "Key %(key)s changed in %(name)s db"
msgstr ""

#: ../roundup/backends/sessions_redis.py:203
#, python-format
msgid ""
"Redis set failed after %(retries)d retries for user %(user)s with key %(key)s"
msgstr ""

#: ../roundup/cgi/actions.py:97
msgid "Base url not set. Check configuration."
msgstr ""

#: ../roundup/cgi/actions.py:113
#, python-format
msgid "Base url %(base_url)s requires https. Redirect url %(url)s uses http."
msgstr ""

#: ../roundup/cgi/actions.py:118
#, python-format
msgid "Unrecognized scheme in %(url)s"
msgstr ""

#: ../roundup/cgi/actions.py:122
#, python-format
msgid "Net location in %(url)s does not match base: %(base_netloc)s"
msgstr ""

#: ../roundup/cgi/actions.py:126
#, python-format
msgid "Base path %(base_path)s is not a prefix for url %(url)s"
msgstr ""

#: ../roundup/cgi/actions.py:140
#, python-format
msgid "Path component (%(url_path)s) in %(url)s is not properly escaped"
msgstr ""

#: ../roundup/cgi/actions.py:144
#, python-format
msgid "Params component (%(url_params)s) in %(url)s is not properly escaped"
msgstr ""

#: ../roundup/cgi/actions.py:147
#, python-format
msgid "Query component (%(url_query)s) in %(url)s is not properly escaped"
msgstr ""

#: ../roundup/cgi/actions.py:150
#, python-format
msgid "Fragment component (%(url_fragment)s) in %(url)s is not properly escaped"
msgstr ""

#: ../roundup/cgi/actions.py:172
#, python-format
msgid "You do not have permission to %(action)s the %(classname)s class."
msgstr ""

#: ../roundup/cgi/actions.py:207
msgid "No type specified"
msgstr ""

#: ../roundup/cgi/actions.py:209
msgid "No ID entered"
msgstr ""

#: ../roundup/cgi/actions.py:215
#, python-format
msgid "\"%(input)s\" is not an ID (%(classname)s ID required)"
msgstr ""

#: ../roundup/cgi/actions.py:228 ../roundup/cgi/actions.py:266
#: ../roundup/cgi/actions.py:493 ../roundup/cgi/actions.py:833
#: ../roundup/cgi/actions.py:880 ../roundup/cgi/actions.py:1084
#: ../roundup/cgi/actions.py:1246 ../roundup/cgi/actions.py:228:266 :1246
#: :493:833 :880:1084
msgid "Invalid request"
msgstr ""

#: ../roundup/cgi/actions.py:246 ../roundup/cgi/actions.py:604
#: ../roundup/cgi/actions.py:246:604
#, python-format
msgid "You do not have permission to retire %(class)s"
msgstr ""

#: ../roundup/cgi/actions.py:254
#, python-format
msgid "%(classname)s %(itemid)s has been retired"
msgstr ""

#: ../roundup/cgi/actions.py:278
#, python-format
msgid "You do not have permission to restore %(class)s"
msgstr ""

#: ../roundup/cgi/actions.py:286
#, python-format
msgid "%(classname)s %(itemid)s has been restored"
msgstr ""

#: ../roundup/cgi/actions.py:329 ../roundup/cgi/actions.py:380
#: ../roundup/cgi/actions.py:329:380
msgid "You do not have permission to edit queries"
msgstr ""

#: ../roundup/cgi/actions.py:335 ../roundup/cgi/actions.py:387
#: ../roundup/cgi/actions.py:335:387
msgid "You do not have permission to store queries"
msgstr ""

#: ../roundup/cgi/actions.py:357
#, python-format
msgid "You already own a query named '%s'. Please choose another name."
msgstr ""

#: ../roundup/cgi/actions.py:440
msgid "Invalid number: "
msgstr ""

#: ../roundup/cgi/actions.py:450
msgid "Invalid integer: "
msgstr ""

#: ../roundup/cgi/actions.py:531 ../roundup/cgi/actions.py:735
#: ../roundup/cgi/actions.py:531:735
#, python-format
msgid "You do not have permission to create %(class)s"
msgstr ""

#: ../roundup/cgi/actions.py:544
#, python-format
msgid "Not enough values on line %(line)s"
msgstr ""

#: ../roundup/cgi/actions.py:556 ../roundup/cgi/actions.py:723
#: ../roundup/cgi/actions.py:556:723
#, python-format
msgid "You do not have permission to edit %(class)s"
msgstr ""

#: ../roundup/cgi/actions.py:611
msgid "Items edited OK"
msgstr ""

#: ../roundup/cgi/actions.py:671
#, python-format
msgid "%(class)s %(id)s %(properties)s edited ok"
msgstr ""

#: ../roundup/cgi/actions.py:689
#, python-format
msgid "%(class)s %(id)s created"
msgstr ""

#: ../roundup/cgi/actions.py:817
#, python-format
msgid ""
"Edit Error: someone else has edited this %(klass)s (%(props)s). View <a "
"target=\"_blank\" href=\"%(klass)s%(id)s\">their changes</a> in a new window."
msgstr ""

#: ../roundup/cgi/actions.py:850
#, python-format
msgid "Edit Error: %s"
msgstr ""

#: ../roundup/cgi/actions.py:931
msgid ""
"Invalid One Time Key!\n"
"(a Mozilla bug may cause this message to show up erroneously, please check "
"your email)"
msgstr ""

#: ../roundup/cgi/actions.py:972
#, python-format
msgid "Password reset for %s"
msgstr ""

#: ../roundup/cgi/actions.py:973
#, python-format
msgid ""
"\n"
"The password has been reset for username \"%(name)s\".\n"
"\n"
"Your password is now: %(password)s\n"
msgstr ""

#: ../roundup/cgi/actions.py:982
#, python-format
msgid "Password reset and email sent to %s"
msgstr ""

#: ../roundup/cgi/actions.py:991
msgid "Unknown username"
msgstr ""

#: ../roundup/cgi/actions.py:999
msgid "Unknown email address"
msgstr ""

#: ../roundup/cgi/actions.py:1004
msgid "You need to specify a username or address"
msgstr ""

#: ../roundup/cgi/actions.py:1015
#, python-format
msgid "Confirm reset of password for %s"
msgstr ""

#: ../roundup/cgi/actions.py:1016
#, python-format
msgid ""
"\n"
"Someone, perhaps you, has requested that the password be changed for your\n"
"username, \"%(name)s\". If you wish to proceed with the change, please "
"follow\n"
"the link below:\n"
"\n"
"  %(url)suser?@template=forgotten&@action=passrst&otk=%(otk)s\n"
"\n"
"You should then receive another email with the new password.\n"
msgstr ""

#: ../roundup/cgi/actions.py:1029
#, python-format
msgid "Email sent to primary notification address for %s."
msgstr ""

#: ../roundup/cgi/actions.py:1031
#, python-format
msgid "Email sent to %s."
msgstr ""

#: ../roundup/cgi/actions.py:1046
msgid "You are now registered, welcome!"
msgstr ""

#: ../roundup/cgi/actions.py:1139
#, python-format
msgid "Username '%s' is already used."
msgstr ""

#: ../roundup/cgi/actions.py:1163
#, python-format
msgid "Complete your registration to %(tracker_name)s -- key %(key)s"
msgstr ""

#: ../roundup/cgi/actions.py:1167
#, python-format
msgid ""
"To complete your registration of the user \"%(name)s\" with\n"
"%(tracker)s, please do one of the following:\n"
"\n"
"- send a reply to %(tracker_email)s and maintain the subject line as is (the\n"
"reply's additional \"Re:\" is ok),\n"
"\n"
"- or visit the following URL:\n"
"\n"
"%(url)s?@action=confrego&otk=%(otk)s\n"
"\n"
msgstr ""

#: ../roundup/cgi/actions.py:1181
#, python-format
msgid "Complete your registration to %s"
msgstr ""

#: ../roundup/cgi/actions.py:1182
#, python-format
msgid ""
"To complete your registration of the user \"%(name)s\" with\n"
"%(tracker)s, please visit the following URL:\n"
"\n"
"%(url)s?@action=confrego&otk=%(otk)s\n"
"\n"
msgstr ""

#: ../roundup/cgi/actions.py:1206
msgid "It is not permitted to supply roles at registration."
msgstr ""

#: ../roundup/cgi/actions.py:1220
msgid "You are logged out"
msgstr ""

#: ../roundup/cgi/actions.py:1250
msgid "Username required"
msgstr ""

#: ../roundup/cgi/actions.py:1329
#, python-format
msgid "Logins occurring too fast. Please wait: %s seconds."
msgstr ""

#: ../roundup/cgi/actions.py:1362
#, python-format
msgid "Welcome %(username)s!"
msgstr ""

#: ../roundup/cgi/actions.py:1384 ../roundup/cgi/actions.py:1388
#: ../roundup/cgi/actions.py:1384:1388
msgid "Invalid login"
msgstr ""

#: ../roundup/cgi/actions.py:1394
msgid "You do not have permission to login"
msgstr ""

#: ../roundup/cgi/actions.py:1439 ../roundup/cgi/actions.py:1618
#: ../roundup/cgi/actions.py:1439:1618
#, python-format
msgid "Column \"%(column)s\" not found in %(class)s"
msgstr ""

#: ../roundup/cgi/actions.py:1689
#, python-format
msgid "You do not have permission to view %(class)s"
msgstr ""

#: ../roundup/cgi/cgitb.py:62
#, python-format
msgid ""
"<h1>Templating Error</h1>\n"
"<p><b>%(exc_type)s</b>: %(exc_value)s</p>\n"
"<p class=\"help\">Debugging information follows</p>"
msgstr ""

#: ../roundup/cgi/cgitb.py:77
#, python-format
msgid "<li>\"%(name)s\" (%(info)s)</li>"
msgstr ""

#: ../roundup/cgi/cgitb.py:81
#, python-format
msgid "<li>Looking for \"%(name)s\", current path:<ol>%(path)s</ol></li>"
msgstr ""

#: ../roundup/cgi/cgitb.py:85
#, python-format
msgid "<li>In %s</li>"
msgstr ""

#: ../roundup/cgi/cgitb.py:90
#, python-format
msgid "A problem occurred in your template \"%s\"."
msgstr ""

#: ../roundup/cgi/cgitb.py:98
#, python-format
msgid ""
"\n"
"<li>While evaluating the %(info)r expression on line %(line)d\n"
"<table class=\"otherinfo\" style=\"font-size: 90%%\">\n"
" <tr><th colspan=\"2\" class=\"header\">Current variables:</th></tr>\n"
" %(globals)s\n"
" %(locals)s\n"
"</table></li>\n"
msgstr ""

#: ../roundup/cgi/cgitb.py:117
msgid "Full traceback:"
msgstr ""

#: ../roundup/cgi/cgitb.py:131
#, python-format
msgid "<font size=+1><strong>%(exc_type)s</strong>: %(exc_value)s</font>"
msgstr ""

#: ../roundup/cgi/cgitb.py:135
msgid ""
"<p>A problem occurred while running a Python script. Here is the sequence of "
"function calls leading up to the error, with the most recent (innermost) call "
"first. The exception attributes are:"
msgstr ""

#: ../roundup/cgi/cgitb.py:144
msgid "&lt;file is None - probably inside <tt>eval</tt> or <tt>exec</tt>&gt;"
msgstr ""

#: ../roundup/cgi/cgitb.py:153
#, python-format
msgid "in <strong>%s</strong>"
msgstr ""

#: ../roundup/cgi/cgitb.py:201 ../roundup/cgi/cgitb.py:207
#: ../roundup/cgi/cgitb.py:201:207
msgid "<em>undefined</em>"
msgstr ""

#: ../roundup/cgi/client.py:97
msgid ""
"<html><head><title>An error has occurred</title></head>\n"
"<body><h1>An error has occurred</h1>\n"
"<p>A problem was encountered processing your request.\n"
"The tracker maintainers have been notified of the problem.</p>\n"
"</body></html>"
msgstr ""

#: ../roundup/cgi/client.py:670 ../roundup/cgi/client.py:1567
#: ../roundup/cgi/client.py:670:1567
msgid "Required Header Missing"
msgstr ""

#: ../roundup/cgi/client.py:672
msgid "Client is not allowed to use Rest Interface."
msgstr ""

#: ../roundup/cgi/client.py:918
msgid "Form Error: "
msgstr ""

#: ../roundup/cgi/client.py:1008
#, python-format
msgid "Unrecognized charset: %r"
msgstr ""

#: ../roundup/cgi/client.py:1261 ../roundup/cgi/client.py:2247
#: ../roundup/cgi/client.py:1261:2247
msgid "broken form: multiple @action values submitted"
msgstr ""

#: ../roundup/cgi/client.py:1276
msgid "Anonymous users are not allowed to use the web interface"
msgstr ""

#: ../roundup/cgi/client.py:1427
msgid "Referer header not available."
msgstr ""

#: ../roundup/cgi/client.py:1431
#, python-format
msgid "csrf key used with wrong method from: %s"
msgstr ""

#: ../roundup/cgi/client.py:1460
#, python-format
msgid "csrf header %(header)s required but missing for user%(userid)s."
msgstr ""

#: ../roundup/cgi/client.py:1464
#, python-format
msgid "Missing header: %s"
msgstr ""

#: ../roundup/cgi/client.py:1472
#, python-format
msgid "csrf Referer header check failed for user%(userid)s. Value=%(referer)s"
msgstr ""

#: ../roundup/cgi/client.py:1477
#, python-format
msgid "Invalid Referer: %s"
msgstr ""

#: ../roundup/cgi/client.py:1492
#, python-format
msgid "csrf Origin header check failed for user%(userid)s. Value=%(origin)s"
msgstr ""

#: ../roundup/cgi/client.py:1497
#, python-format
msgid "Invalid Origin %s"
msgstr ""

#: ../roundup/cgi/client.py:1511
#, python-format
msgid ""
"csrf X-FORWARDED-HOST header check failed for user%(userid)s. Value=%(host)s"
msgstr ""

#: ../roundup/cgi/client.py:1517
#, python-format
msgid "Invalid X-FORWARDED-HOST %s"
msgstr ""

#: ../roundup/cgi/client.py:1536
#, python-format
msgid "csrf HOST header check failed for user%(userid)s. Value=%(host)s"
msgstr ""

#: ../roundup/cgi/client.py:1541
#, python-format
msgid "Invalid HOST %s"
msgstr ""

#: ../roundup/cgi/client.py:1549
msgid "Csrf: unable to verify sufficient headers"
msgstr ""

#: ../roundup/cgi/client.py:1550
msgid "Unable to verify sufficient headers"
msgstr ""

#: ../roundup/cgi/client.py:1564
#, python-format
msgid "csrf X-REQUESTED-WITH xmlrpc required header check failed for user%s."
msgstr ""

#: ../roundup/cgi/client.py:1605
#, python-format
msgid "Required csrf field missing for user%s"
msgstr ""

#: ../roundup/cgi/client.py:1607 ../roundup/cgi/client.py:1634
#: ../roundup/cgi/client.py:1651 ../roundup/cgi/client.py:1607:1634 :1651
msgid ""
"We can't validate your session (csrf failure). Re-enter any unsaved data and "
"try again."
msgstr ""

#: ../roundup/cgi/client.py:1611
#, python-format
msgid "csrf field not supplied by user%s"
msgstr ""

#: ../roundup/cgi/client.py:1623
#, python-format
msgid ""
"Csrf mismatch user: current user %(user)s != stored user %(stored)s, current "
"session, stored session: %(cur_sess)s,%(stor_sess)s for key %(key)s."
msgstr ""

#: ../roundup/cgi/client.py:1641
#, python-format
msgid ""
"Csrf mismatch user: current session %(curr_sess)s != stored session "
"%(stor_sess)s, current user/stored user is: %(user)s for key %(key)s."
msgstr ""

#: ../roundup/cgi/client.py:1835
msgid "You are not allowed to view this file."
msgstr ""

#: ../roundup/cgi/client.py:2124
#, python-format
msgid "%(starttag)sTime elapsed: %(seconds)fs%(endtag)s\n"
msgstr ""

#: ../roundup/cgi/client.py:2128
#, python-format
msgid ""
"%(starttag)sCache hits: %(cache_hits)d, misses %(cache_misses)d. Loading "
"items: %(get_items)f secs. Filtering: %(filtering)f secs.%(endtag)s\n"
msgstr ""

#: ../roundup/cgi/client.py:2666
#, python-format
msgid ""
"Cache failure: compressed file %(compressed)s is older than its source file "
"%(filename)s"
msgstr ""

#: ../roundup/cgi/form_parser.py:292
#, python-format
msgid "link \"%(key)s\" value \"%(entry)s\" not a designator"
msgstr ""

#: ../roundup/cgi/form_parser.py:311
#, python-format
msgid "%(class)s %(property)s is not a link or multilink property"
msgstr ""

#: ../roundup/cgi/form_parser.py:324
#, python-format
msgid ""
"The form action claims to require property \"%(property)s\" which doesn't "
"exist"
msgstr ""

#: ../roundup/cgi/form_parser.py:347
#, python-format
msgid ""
"You have submitted a %(action)s action for the property \"%(property)s\" "
"which doesn't exist"
msgstr ""

#: ../roundup/cgi/form_parser.py:373 ../roundup/cgi/form_parser.py:402
#: ../roundup/cgi/form_parser.py:373:402
#, python-format
msgid "You have submitted more than one value for the %s property"
msgstr ""

#: ../roundup/cgi/form_parser.py:398 ../roundup/cgi/form_parser.py:405
#: ../roundup/cgi/form_parser.py:398:405
msgid "Password and confirmation text do not match"
msgstr ""

#: ../roundup/cgi/form_parser.py:423
msgid "Not a file attachment"
msgstr ""

#: ../roundup/cgi/form_parser.py:468
#, python-format
msgid "property \"%(propname)s\": \"%(value)s\" not currently in list"
msgstr ""

#: ../roundup/cgi/form_parser.py:590
#, python-format
msgid "Required %(class)s property %(property)s not supplied"
msgid_plural "Required %(class)s properties %(property)s not supplied"
msgstr[0] ""
msgstr[1] ""

#: ../roundup/cgi/templating.py:240
#, python-format
msgid "You are not allowed to %(action)s items of class %(class)s"
msgstr ""

#: ../roundup/cgi/templating.py:869
msgid "(list)"
msgstr ""

#: ../roundup/cgi/templating.py:944
msgid "Submit New Entry"
msgstr ""

#: ../roundup/cgi/templating.py:966 ../roundup/cgi/templating.py:1142
#: ../roundup/cgi/templating.py:1777 ../roundup/cgi/templating.py:1806
#: ../roundup/cgi/templating.py:1826 ../roundup/cgi/templating.py:1839
#: ../roundup/cgi/templating.py:1877 ../roundup/cgi/templating.py:1930
#: ../roundup/cgi/templating.py:1954 ../roundup/cgi/templating.py:1961
#: ../roundup/cgi/templating.py:1998 ../roundup/cgi/templating.py:2051
#: ../roundup/cgi/templating.py:2084 ../roundup/cgi/templating.py:2179
#: ../roundup/cgi/templating.py:2200 ../roundup/cgi/templating.py:2291
#: ../roundup/cgi/templating.py:2311 ../roundup/cgi/templating.py:2333
#: ../roundup/cgi/templating.py:2376 ../roundup/cgi/templating.py:2386
#: ../roundup/cgi/templating.py:2451 ../roundup/cgi/templating.py:2754
#: ../roundup/cgi/templating.py:966:1142 :1777:1806 :1826:1839 :1877:1930
#: :1954:1961 :1998:2051 :2084:2179 :2200:2291 :2311:2333 :2376:2386 :2451:2754
msgid "[hidden]"
msgstr ""

#: ../roundup/cgi/templating.py:967
msgid "New node - no history"
msgstr ""

#: ../roundup/cgi/templating.py:1107
msgid "Submit Changes"
msgstr ""

#: ../roundup/cgi/templating.py:1185
msgid "<em>The indicated property no longer exists</em>"
msgstr ""

#: ../roundup/cgi/templating.py:1221
#, python-format
msgid "The linked class %(classname)s no longer exists"
msgstr ""

#: ../roundup/cgi/templating.py:1258 ../roundup/cgi/templating.py:1288
#: ../roundup/cgi/templating.py:2460 ../roundup/cgi/templating.py:2763
#: ../roundup/cgi/templating.py:1258:1288 :2460:2763
msgid "[label is missing]"
msgstr ""

#: ../roundup/cgi/templating.py:1262 ../roundup/cgi/templating.py:1291
#: ../roundup/cgi/templating.py:1262:1291
msgid "<strike>The linked node no longer exists</strike>"
msgstr ""

#: ../roundup/cgi/templating.py:1353
#, python-format
msgid "%s: (no value)"
msgstr ""

#: ../roundup/cgi/templating.py:1369
#, python-format
msgid ""
"<strong><em>This event %s is not handled by the history display!</em></strong>"
msgstr ""

#: ../roundup/cgi/templating.py:1382
msgid "<tr><td colspan=4><strong>Note:</strong></td></tr>"
msgstr ""

#: ../roundup/cgi/templating.py:1391
msgid "History"
msgstr ""

#: ../roundup/cgi/templating.py:1393
msgid "<th>Date</th>"
msgstr ""

#: ../roundup/cgi/templating.py:1394
msgid "<th>User</th>"
msgstr ""

#: ../roundup/cgi/templating.py:1395
msgid "<th>Action</th>"
msgstr ""

#: ../roundup/cgi/templating.py:1396
msgid "<th>Args</th>"
msgstr ""

#: ../roundup/cgi/templating.py:1447
#, python-format
msgid "Copy of %(class)s %(id)s"
msgstr ""

#: ../roundup/cgi/templating.py:2088 ../roundup/cgi/templating.py:2123
#: ../roundup/cgi/templating.py:1335:2088 :2123
msgid "No"
msgstr ""

#: ../roundup/cgi/templating.py:2088 ../roundup/cgi/templating.py:2117
#: ../roundup/cgi/templating.py:1335:2088 :2117
msgid "Yes"
msgstr ""

#: ../roundup/cgi/templating.py:2249
msgid ""
"default value for DateHTMLProperty must be either DateHTMLProperty or string "
"date representation."
msgstr ""

#: ../roundup/cgi/templating.py:2431
#, python-format
msgid "Attempt to look up %(attr)s on a missing value"
msgstr ""

#: ../roundup/cgi/templating.py:2442
#, python-format
msgid "Attempt to look up %(item)s on a missing value"
msgstr ""

#: ../roundup/cgi/templating.py:2547
#, python-format
msgid "<option %svalue=\"-1\">- no selection -</option>"
msgstr ""

#: ../roundup/cgi/timestamp.py:23
msgid "Form is corrupted."
msgstr ""

#: ../roundup/cgi/timestamp.py:32
#, python-format
msgid "Form is corrupted, missing: %s."
msgstr ""

#: ../roundup/cgi/timestamp.py:34
msgid "Responding to form too quickly."
msgstr ""

#: ../roundup/configuration.py:274
#, python-format
msgid ""
"Error in %(filepath)s with section [%(section)s] at option %(option)s: "
"%(message)s"
msgstr ""

#: ../roundup/configuration.py:494
msgid "Valid languages: "
msgstr ""

#: ../roundup/configuration.py:504
msgid "Expected languages: "
msgstr ""

#: ../roundup/date.py:398
#, python-format
msgid ""
"Not a date spec: %r (\"yyyy-mm-dd\", \"mm-dd\", \"HH:MM\", \"HH:MM:SS\" or "
"\"yyyy-mm-dd.HH:MM:SS.SSS\")"
msgstr ""

#: ../roundup/date.py:421
msgid "Could not determine granularity"
msgstr ""

#: ../roundup/date.py:473
#, python-format
msgid ""
"%r not a date / time spec \"yyyy-mm-dd\", \"mm-dd\", \"HH:MM\", \"HH:MM:SS\" "
"or \"yyyy-mm-dd.HH:MM:SS.SSS\""
msgstr ""

#: ../roundup/date.py:845
#, python-format
msgid ""
"Not an interval spec: \"%s\" ([+-] [#y] [#m] [#w] [#d] [[[H]H:MM]:SS] [date "
"spec])"
msgstr ""

#: ../roundup/date.py:868
#, python-format
msgid "Not an interval spec: \"%s\" ([+-] [#y] [#m] [#w] [#d] [[[H]H:MM]:SS])"
msgstr ""

#: ../roundup/date.py:1045
#, python-format
msgid "%(number)s year"
msgid_plural "%(number)s years"
msgstr[0] ""
msgstr[1] ""

#: ../roundup/date.py:1049
#, python-format
msgid "%(number)s month"
msgid_plural "%(number)s months"
msgstr[0] ""
msgstr[1] ""

#: ../roundup/date.py:1053
#, python-format
msgid "%(number)s week"
msgid_plural "%(number)s weeks"
msgstr[0] ""
msgstr[1] ""

#: ../roundup/date.py:1057
#, python-format
msgid "%(number)s day"
msgid_plural "%(number)s days"
msgstr[0] ""
msgstr[1] ""

#: ../roundup/date.py:1061
msgid "tomorrow"
msgstr ""

#: ../roundup/date.py:1063
msgid "yesterday"
msgstr ""

#: ../roundup/date.py:1066
#, python-format
msgid "%(number)s hour"
msgid_plural "%(number)s hours"
msgstr[0] ""
msgstr[1] ""

#: ../roundup/date.py:1070
msgid "an hour"
msgstr ""

#: ../roundup/date.py:1072
msgid "1 1/2 hours"
msgstr ""

#: ../roundup/date.py:1074
#, python-format
msgid "1 %(number)s/4 hours"
msgid_plural "1 %(number)s/4 hours"
msgstr[0] ""
msgstr[1] ""

#: ../roundup/date.py:1079
msgid "in a moment"
msgstr ""

#: ../roundup/date.py:1081
msgid "just now"
msgstr ""

#: ../roundup/date.py:1084
msgid "1 minute"
msgstr ""

#: ../roundup/date.py:1087
#, python-format
msgid "%(number)s minute"
msgid_plural "%(number)s minutes"
msgstr[0] ""
msgstr[1] ""

#: ../roundup/date.py:1090
msgid "1/2 an hour"
msgstr ""

#: ../roundup/date.py:1092
#, python-format
msgid "%(number)s/4 hour"
msgid_plural "%(number)s/4 hours"
msgstr[0] ""
msgstr[1] ""

#: ../roundup/date.py:1096
#, python-format
msgid "%s ago"
msgstr ""

#: ../roundup/date.py:1098
#, python-format
msgid "in %s"
msgstr ""

#: ../roundup/hyperdb.py:120
#, python-format
msgid "property %(property)s: %(errormsg)s"
msgstr ""

#: ../roundup/hyperdb.py:149
#, python-format
msgid "property %(property)s: %(value)r is an invalid date (%(errormsg)s)"
msgstr ""

#: ../roundup/hyperdb.py:172
#, python-format
msgid ""
"property %(property)s: %(value)r is an invalid date interval (%(errormsg)s)"
msgstr ""

#: ../roundup/hyperdb.py:434
#, python-format
msgid "property %(property)s: %(value)r is not a number"
msgstr ""

#: ../roundup/hyperdb.py:448
#, python-format
msgid "property %(property)s: %(value)r is not an integer"
msgstr ""

#: ../roundup/hyperdb.py:470
#, python-format
msgid "\"%s\" not a node designator"
msgstr ""

#: ../roundup/hyperdb.py:1499 ../roundup/hyperdb.py:1507
#: ../roundup/hyperdb.py:1499:1507
#, python-format
msgid "Not a property name: %s"
msgstr ""

#: ../roundup/hyperdb.py:1984
#, python-format
msgid "property %(property)s: %(value)r is not a %(classname)s."
msgstr ""

#: ../roundup/hyperdb.py:1990
#, python-format
msgid "you may only enter ID values for property %s"
msgstr ""

#: ../roundup/hyperdb.py:2025
#, python-format
msgid "%(property)r is not a property of %(classname)s"
msgstr ""

#: ../roundup/init.py:141
#, python-format
msgid ""
"WARNING: directory '%s'\n"
"\tcontains old-style template - ignored"
msgstr ""

#: ../roundup/mailgw.py:215 ../roundup/mailgw.py:228
#: ../roundup/mailgw.py:215:228
#, python-format
msgid "Message signed with unknown key: %s"
msgstr ""

#: ../roundup/mailgw.py:218
#, python-format
msgid "Message signed with an expired key: %s"
msgstr ""

#: ../roundup/mailgw.py:221
#, python-format
msgid "Message signed with a revoked key: %s"
msgstr ""

#: ../roundup/mailgw.py:224
msgid "Invalid PGP signature detected."
msgstr ""

#: ../roundup/mailgw.py:231
msgid "Unsigned Message"
msgstr ""

#: ../roundup/mailgw.py:481
msgid "Unknown multipart/encrypted version."
msgstr ""

#: ../roundup/mailgw.py:490
msgid "Unable to decrypt your message."
msgstr ""

#: ../roundup/mailgw.py:517
msgid "No PGP signature found in message."
msgstr ""

#: ../roundup/mailgw.py:599
msgid ""
"\n"
"Emails to Roundup trackers must include a Subject: line!\n"
msgstr ""

#: ../roundup/mailgw.py:712
#, python-format
msgid ""
"\n"
"The message you sent to roundup did not contain a properly formed subject\n"
"line. The subject must contain a class name or designator to indicate the\n"
"'topic' of the message. For example:\n"
"    Subject: [issue] This is a new issue\n"
"      - this will create a new issue in the tracker with the title 'This is\n"
"        a new issue'.\n"
"    Subject: [issue1234] This is a followup to issue 1234\n"
"      - this will append the message's contents to the existing issue 1234\n"
"        in the tracker.\n"
"\n"
"Subject was: '%(subject)s'\n"
msgstr ""

#: ../roundup/mailgw.py:747
#, python-format
msgid ""
"\n"
"The class name you identified in the subject line (\"%(classname)s\") does\n"
"not exist in the database.\n"
"\n"
"Valid class names are: %(validname)s\n"
"Subject was: \"%(subject)s\"\n"
msgstr ""

#: ../roundup/mailgw.py:755
#, python-format
msgid ""
"\n"
"You did not identify a class name in the subject line and there is no\n"
"default set for this tracker. The subject must contain a class name or\n"
"designator to indicate the 'topic' of the message. For example:\n"
"    Subject: [issue] This is a new issue\n"
"      - this will create a new issue in the tracker with the title 'This is\n"
"        a new issue'.\n"
"    Subject: [issue1234] This is a followup to issue 1234\n"
"      - this will append the message's contents to the existing issue 1234\n"
"        in the tracker.\n"
"\n"
"Subject was: '%(subject)s'\n"
msgstr ""

#: ../roundup/mailgw.py:815
#, python-format
msgid ""
"\n"
"I cannot match your message to a node in the database - you need to either\n"
"supply a full designator (with number, eg \"[issue123]\") or keep the\n"
"previous subject title intact so I can match that.\n"
"\n"
"Subject was: \"%(subject)s\"\n"
msgstr ""

#: ../roundup/mailgw.py:848
#, python-format
msgid ""
"\n"
"The node specified by the designator in the subject of your message\n"
"(\"%(nodeid)s\") does not exist.\n"
"\n"
"Subject was: \"%(subject)s\"\n"
msgstr ""

#: ../roundup/mailgw.py:893
#, python-format
msgid ""
"\n"
"You are not a registered user.%(registration_info)s\n"
"\n"
"Unknown address: %(from_address)s\n"
msgstr ""

#: ../roundup/mailgw.py:901
msgid "You are not permitted to access this tracker."
msgstr ""

#: ../roundup/mailgw.py:913
#, python-format
msgid "You are not permitted to edit %(classname)s."
msgstr ""

#: ../roundup/mailgw.py:919
#, python-format
msgid "You are not permitted to create %(classname)s."
msgstr ""

#: ../roundup/mailgw.py:1001
#, python-format
msgid ""
"\n"
"There were problems handling your subject line argument list:\n"
"- %(errors)s\n"
"\n"
"Subject was: \"%(subject)s\"\n"
msgstr ""

#: ../roundup/mailgw.py:1054
msgid "This tracker has been configured to require all email be PGP encrypted."
msgstr ""

#: ../roundup/mailgw.py:1092
msgid ""
"\n"
"This tracker has been configured to require all email be PGP signed or\n"
"encrypted."
msgstr ""

#: ../roundup/mailgw.py:1122
msgid "You are not permitted to create files."
msgstr ""

#: ../roundup/mailgw.py:1139
#, python-format
msgid "You are not permitted to add files to %(classname)s."
msgstr ""

#: ../roundup/mailgw.py:1170
msgid ""
"\n"
"Roundup requires the submission to be plain text. The message parser could\n"
"not find a text/plain part to use.\n"
msgstr ""

#: ../roundup/mailgw.py:1183
msgid "You are not permitted to create messages."
msgstr ""

#: ../roundup/mailgw.py:1192
#, python-format
msgid ""
"\n"
"Mail message was rejected by a detector.\n"
"%(error)s\n"
msgstr ""

#: ../roundup/mailgw.py:1203
#, python-format
msgid "You are not permitted to add messages to %(classname)s."
msgstr ""

#: ../roundup/mailgw.py:1226
#, python-format
msgid "You are not permitted to edit property %(prop)s of class %(classname)s."
msgstr ""

#: ../roundup/mailgw.py:1238
#, python-format
msgid "You are not permitted to set property %(prop)s of class %(classname)s."
msgstr ""

#: ../roundup/mailgw.py:1246
#, python-format
msgid ""
"\n"
"There was a problem with the message you sent:\n"
"   %(message)s\n"
msgstr ""

#: ../roundup/mailgw.py:1366 ../roundup/mailgw.py:1835
#: ../roundup/mailgw.py:1366:1835
#, python-format
msgid ""
"\n"
"The mail gateway is not properly set up. Please contact\n"
"%(mailadmin)s and have them fix the incorrect properties:\n"
"  %(errors)s\n"
msgstr ""

#: ../roundup/mailgw.py:1821
#, python-format
msgid ""
"\n"
"The mail gateway is not properly set up. Please contact\n"
"%(mailadmin)s and have them fix the incorrect class specified as:\n"
"  %(classname)s\n"
msgstr ""

#: ../roundup/mailgw.py:1856
msgid "not of form [arg=value,value,...;arg=value,value,...]"
msgstr ""

#: ../roundup/rest.py:398
#, python-format
msgid "Method %(m)s not allowed. Allowed: %(a)s"
msgstr ""

#: ../roundup/rest.py:1101
#, python-format
msgid "Invalid attribute %s"
msgstr ""

#: ../roundup/rest.py:2094
#, python-format
msgid "Api rate limits exceeded. Please wait: %s seconds."
msgstr ""

#: ../roundup/rest.py:2129
#, python-format
msgid ""
"Unable to parse Accept Header. %(error)s. Acceptable types: "
"%(acceptable_types)s"
msgstr ""

#: ../roundup/rest.py:2309
#, python-format
msgid ""
"Unrecognized api version: %s. See /rest without specifying api version for "
"supported versions."
msgstr ""

#: ../roundup/roundupdb.py:140
#, python-format
msgid "Username '%s' already exists."
msgstr ""

#: ../roundup/roundupdb.py:224
msgid "files"
msgstr ""

#: ../roundup/roundupdb.py:224
msgid "messages"
msgstr ""

#: ../roundup/roundupdb.py:224
msgid "nosy"
msgstr ""

#: ../roundup/roundupdb.py:224
msgid "superseder"
msgstr ""

#: ../roundup/roundupdb.py:224
msgid "title"
msgstr ""

#: ../roundup/roundupdb.py:225
msgid "assignedto"
msgstr ""

#: ../roundup/roundupdb.py:225
msgid "keyword"
msgstr ""

#: ../roundup/roundupdb.py:225
msgid "priority"
msgstr ""

#: ../roundup/roundupdb.py:225
msgid "status"
msgstr ""

#: ../roundup/roundupdb.py:228
msgid "activity"
msgstr ""

#. following properties are common for all hyperdb classes
#. they are listed here to keep things in one place
#: ../roundup/roundupdb.py:228
msgid "actor"
msgstr ""

#: ../roundup/roundupdb.py:228
msgid "creation"
msgstr ""

#: ../roundup/roundupdb.py:228
msgid "creator"
msgstr ""

#: ../roundup/roundupdb.py:426
#, python-format
msgid "No key for \"%(adr)s\" in keyring"
msgstr ""

#: ../roundup/roundupdb.py:504
#, python-format
msgid "New submission from %(authname)s%(authaddr)s:"
msgstr ""

#: ../roundup/roundupdb.py:507
#, python-format
msgid "%(authname)s%(authaddr)s added the comment:"
msgstr ""

#: ../roundup/roundupdb.py:510
#, python-format
msgid "Change by %(authname)s%(authaddr)s:"
msgstr ""

#: ../roundup/roundupdb.py:529
#, python-format
msgid "File '%(filename)s' not attached - you can download it from %(link)s."
msgstr ""

#: ../roundup/roundupdb.py:904
#, python-format
msgid ""
"\n"
"Now:\n"
"%(new)s\n"
"Was:\n"
"%(old)s"
msgstr ""

#: ../roundup/scripts/roundup_demo.py:156
#, python-format
msgid "Enter directory path to create demo tracker [%s]: "
msgstr ""

#: ../roundup/scripts/roundup_demo.py:162
#, python-format
msgid ""
"Enter tracker template to use (one of (%(template_list)s)) "
"[%(default_template)s]: "
msgstr ""

#: ../roundup/scripts/roundup_gettext.py:35
#, python-format
msgid "Usage: %(program)s <tracker home>"
msgstr ""

#: ../roundup/scripts/roundup_gettext.py:51
#, python-format
msgid "No tracker templates found in directory %s"
msgstr ""

#: ../roundup/scripts/roundup_mailgw.py:182
msgid ""
"\n"
"Error: The instance home must be specified"
msgstr ""

#: ../roundup/scripts/roundup_mailgw.py:200
msgid ""
"\n"
"Error: not enough source specification information"
msgstr ""

#: ../roundup/scripts/roundup_mailgw.py:231
#, python-format
msgid ""
"\n"
"Error: %s specification not valid"
msgstr ""

#: ../roundup/scripts/roundup_mailgw.py:254
msgid ""
"\n"
"Error: The source must be either \"mailbox\", \"pop\", \"pops\", \"apop\", "
"\"imap\", \"imaps\",  \"imaps_cram\", or \"imaps_oauth\""
msgstr ""

#: ../roundup/scripts/roundup_server.py:112
msgid "WARNING: generating temporary SSL certificate"
msgstr ""

#: ../roundup/scripts/roundup_server.py:331
msgid ""
"<html><head><title>Roundup trackers index</title></head>\n"
"<body><h1>Roundup trackers index</h1><ol>\n"
msgstr ""

#: ../roundup/scripts/roundup_server.py:551
#, python-format
msgid "Error: %(type)s: %(value)s"
msgstr ""

#: ../roundup/scripts/roundup_server.py:563
msgid "WARNING: ignoring \"-g\" argument, not root"
msgstr ""

#: ../roundup/scripts/roundup_server.py:569
msgid "Can't change groups - no grp module"
msgstr ""

#: ../roundup/scripts/roundup_server.py:578
#, python-format
msgid "Group %(group)s doesn't exist"
msgstr ""

#: ../roundup/scripts/roundup_server.py:590
msgid "Can't run as root!"
msgstr ""

#: ../roundup/scripts/roundup_server.py:593
msgid "WARNING: ignoring \"-u\" argument, not root"
msgstr ""

#: ../roundup/scripts/roundup_server.py:599
msgid "Can't change users - no pwd module"
msgstr ""

#: ../roundup/scripts/roundup_server.py:608
#, python-format
msgid "User %(user)s doesn't exist"
msgstr ""

#: ../roundup/scripts/roundup_server.py:809
#, python-format
msgid "Multiprocess mode \"%s\" is not available, switching to single-process"
msgstr ""

#: ../roundup/scripts/roundup_server.py:837
#, python-format
msgid "Unable to bind to port %s, port already in use."
msgstr ""

#: ../roundup/scripts/roundup_server.py:841
#, python-format
msgid ""
"Unable to bind to port %(port)s, access not allowed, errno: %(errno)s %(msg)s"
msgstr ""

#: ../roundup/scripts/roundup_server.py:920
msgid ""
" -c <Command>  Windows Service options.\n"
"               If you want to run the server as a Windows Service, you\n"
"               must use configuration file to specify tracker homes.\n"
"               Logfile option is required to run Roundup Tracker service.\n"
"               Typing \"roundup-server -c help\" shows Windows Services\n"
"               specifics."
msgstr ""

#: ../roundup/scripts/roundup_server.py:927
msgid ""
" -u <UID>      runs the Roundup web server as this UID\n"
" -g <GID>      runs the Roundup web server as this GID\n"
" -d <PIDfile>  run the server in the background and write the server's PID\n"
"               to the file indicated by PIDfile. The -l option *must* be\n"
"               specified if -d is used."
msgstr ""

#: ../roundup/scripts/roundup_server.py:934
#, python-format
msgid ""
"\n"
"%(message)sUsage: roundup-server [options] [name=tracker home]*\n"
"\n"
"Options:\n"
" -v            print the Roundup version number and exit\n"
" -h            print this text and exit\n"
" -S            create or update configuration file and exit\n"
" -C <fname>    use configuration file <fname>\n"
" -n <name>     set the host name of the Roundup web server instance,\n"
"               specifies on which network interfaces to listen for\n"
"               connections, defaults to localhost, use 0.0.0.0 to bind\n"
"               to all network interfaces\n"
" -p <port>     set the port to listen on (default: %(port)s)\n"
" -I <header1[,header2]*> list of headers to pass to the backend\n"
" -l <fname>    log to the file indicated by fname instead of stderr/stdout\n"
" -N            log client machine names instead of IP addresses (much "
"slower)\n"
" -i <fname>    set tracker index template\n"
" -m <children> maximum number of children to spawn in fork multiprocess mode\n"
" -s            enable SSL\n"
" -L            http request logging uses python logging (roundup.http)\n"
" -e <fname>    PEM file containing SSL key and certificate\n"
" -t <mode>     multiprocess mode (default: %(mp_def)s).\n"
"               Allowed values: %(mp_types)s.\n"
" -V <version>  set HTTP version (default: HTTP/1.1).\n"
"               Allowed values: HTTP/1.0, HTTP/1.1.\n"
"\n"
"%(os_part)s\n"
"\n"
"Long options:\n"
" --version          print the Roundup version number and exit\n"
" --help             print this text and exit\n"
" --save-config      create or update configuration file and exit\n"
" --config <fname>   use configuration file <fname>\n"
" All settings of the [main] section of the configuration file\n"
" also may be specified in form --<name>=<value>\n"
"\n"
"Examples:\n"
"\n"
" roundup-server -S -C /opt/roundup/etc/roundup-server.ini \\\n"
"    -n localhost -p 8917 -l /var/log/roundup.log \\\n"
"    support=/var/spool/roundup-trackers/support\n"
"\n"
" roundup-server -C /opt/roundup/etc/roundup-server.ini\n"
"\n"
" roundup-server support=/var/spool/roundup-trackers/support\n"
"\n"
" roundup-server -d /var/run/roundup.pid -l /var/log/roundup.log \\\n"
"    support=/var/spool/roundup-trackers/support\n"
"\n"
"Configuration file format:\n"
"   Roundup Server configuration file has common .ini file format.\n"
"   Configuration file created with 'roundup-server -S' contains\n"
"   detailed explanations for each option.  Please see that file\n"
"   for option descriptions.\n"
"\n"
"How to use \"name=tracker home\":\n"
"   These arguments set the tracker home(s) to use. The name is how the\n"
"   tracker is identified in the URL (it's the first part of the URL path).\n"
"   The tracker home is the directory that was identified when you did\n"
"   \"roundup-admin init\". You may specify any number of these name=home\n"
"   pairs on the command-line. Make sure the name part doesn't include\n"
"   any url-unsafe characters like spaces, as these confuse IE.\n"
msgstr ""

#: ../roundup/scripts/roundup_server.py:1111
msgid "Instances must be name=home"
msgstr ""

#: ../roundup/scripts/roundup_server.py:1125
#, python-format
msgid "Configuration saved to %s"
msgstr ""

#: ../roundup/scripts/roundup_server.py:1143
msgid "Sorry, you can't run the server as a daemon on this Operating System"
msgstr ""

#: ../roundup/scripts/roundup_server.py:1163
#, python-format
msgid "Roundup server started on %(HOST)s:%(PORT)s"
msgstr ""

#: ../share/roundup/templates/classic/html/_generic.collision.html:4
#: ../share/roundup/templates/devel/html/_generic.collision.html:4
#: ../share/roundup/templates/minimal/html/_generic.collision.html:4
#: ../share/roundup/templates/responsive/html/_generic.collision.html:4
msgid "${class} Edit Collision - ${tracker}"
msgstr ""

#: ../share/roundup/templates/classic/html/_generic.collision.html:7
#: ../share/roundup/templates/devel/html/_generic.collision.html:7
#: ../share/roundup/templates/minimal/html/_generic.collision.html:7
#: ../share/roundup/templates/responsive/html/_generic.collision.html:7
msgid "${class} Edit Collision"
msgstr ""

#: ../share/roundup/templates/classic/html/_generic.collision.html:14
#: ../share/roundup/templates/devel/html/_generic.collision.html:14
#: ../share/roundup/templates/minimal/html/_generic.collision.html:14
#: ../share/roundup/templates/responsive/html/_generic.collision.html:14
msgid ""
"\n"
"  There has been a collision. Another user updated this node\n"
"  while you were editing. Please <a href='${context}'>reload</a>\n"
"  the node and review your edits.\n"
msgstr ""

#: ../share/roundup/templates/classic/html/_generic.help-empty.html:6
#: ../share/roundup/templates/devel/html/_generic.help-empty.html:6
#: ../share/roundup/templates/devel/html/user.help.html:90
#: ../share/roundup/templates/responsive/html/_generic.help-empty.html:6
#: ../share/roundup/templates/responsive/html/user.help.html:90
msgid "Please specify your search parameters!"
msgstr ""

#: ../share/roundup/templates/classic/html/_generic.help-list.html:20
#: ../share/roundup/templates/classic/html/_generic.index.html:14
#: ../share/roundup/templates/classic/html/_generic.item.html:12
#: ../share/roundup/templates/classic/html/file.item.html:9
#: ../share/roundup/templates/classic/html/issue.index.html:15
#: ../share/roundup/templates/classic/html/issue.item.html:28
#: ../share/roundup/templates/classic/html/msg.item.html:26
#: ../share/roundup/templates/classic/html/user.index.html:9
#: ../share/roundup/templates/classic/html/user.item.html:35
#: ../share/roundup/templates/devel/html/_generic.help-list.html:2
#: ../share/roundup/templates/devel/html/_generic.index.html:12
#: ../share/roundup/templates/devel/html/_generic.item.html:12
#: ../share/roundup/templates/devel/html/_generic.query.html:2
#: ../share/roundup/templates/devel/html/bug.index.html:15
#: ../share/roundup/templates/devel/html/bug.item.html:27
#: ../share/roundup/templates/devel/html/file.item.html:9
#: ../share/roundup/templates/devel/html/keyword.index.html:15
#: ../share/roundup/templates/devel/html/keyword.item.html:33
#: ../share/roundup/templates/devel/html/milestone.index.html:15
#: ../share/roundup/templates/devel/html/msg.item.html:25
#: ../share/roundup/templates/devel/html/patch.item.html:9
#: ../share/roundup/templates/devel/html/patch.item.html:97
#: ../share/roundup/templates/devel/html/task.index.html:15
#: ../share/roundup/templates/devel/html/task.item.html:27
#: ../share/roundup/templates/devel/html/user.index.html:8
#: ../share/roundup/templates/devel/html/user.item.html:34
#: ../share/roundup/templates/minimal/html/_generic.index.html:14
#: ../share/roundup/templates/minimal/html/_generic.item.html:12
#: ../share/roundup/templates/minimal/html/user.index.html:9
#: ../share/roundup/templates/minimal/html/user.item.html:34
#: ../share/roundup/templates/minimal/html/user.register.html:14
#: ../share/roundup/templates/responsive/html/_generic.help-list.html:2
#: ../share/roundup/templates/responsive/html/_generic.index.html:12
#: ../share/roundup/templates/responsive/html/_generic.item.html:12
#: ../share/roundup/templates/responsive/html/_generic.query.html:2
#: ../share/roundup/templates/responsive/html/bug.index.html:15
#: ../share/roundup/templates/responsive/html/bug.item.html:27
#: ../share/roundup/templates/responsive/html/file.item.html:9
#: ../share/roundup/templates/responsive/html/keyword.index.html:15
#: ../share/roundup/templates/responsive/html/keyword.item.html:33
#: ../share/roundup/templates/responsive/html/milestone.index.html:15
#: ../share/roundup/templates/responsive/html/msg.item.html:26
#: ../share/roundup/templates/responsive/html/patch.item.html:9
#: ../share/roundup/templates/responsive/html/patch.item.html:95
#: ../share/roundup/templates/responsive/html/task.index.html:15
#: ../share/roundup/templates/responsive/html/task.item.html:27
#: ../share/roundup/templates/responsive/html/user.index.html:8
#: ../share/roundup/templates/responsive/html/user.item.html:34
msgid "You are not allowed to view this page."
msgstr ""

#: ../share/roundup/templates/classic/html/_generic.help-list.html:34
#: ../share/roundup/templates/devel/html/_generic.help-list.html:12
#: ../share/roundup/templates/responsive/html/_generic.help-list.html:12
msgid "1..25 out of 50"
msgstr ""

#: ../share/roundup/templates/classic/html/_generic.help-search.html:9
#: ../share/roundup/templates/devel/html/_generic.help-search.html:9
#: ../share/roundup/templates/responsive/html/_generic.help-search.html:9
msgid ""
"Generic template ${template} or version for class ${classname} is not yet "
"implemented"
msgstr ""

#: ../share/roundup/templates/classic/html/_generic.help-submit.html:57
#: ../share/roundup/templates/classic/html/_generic.help.html:31
#: ../share/roundup/templates/devel/html/_generic.help-submit.html:57
#: ../share/roundup/templates/devel/html/user.help.html:103
#: ../share/roundup/templates/minimal/html/_generic.help.html:31
#: ../share/roundup/templates/responsive/html/_generic.help-submit.html:57
#: ../share/roundup/templates/responsive/html/user.help.html:103
msgid " Cancel "
msgstr ""

#: ../share/roundup/templates/classic/html/_generic.help-submit.html:63
#: ../share/roundup/templates/classic/html/_generic.help.html:34
#: ../share/roundup/templates/devel/html/_generic.help-submit.html:63
#: ../share/roundup/templates/devel/html/user.help.html:108
#: ../share/roundup/templates/minimal/html/_generic.help.html:34
#: ../share/roundup/templates/responsive/html/_generic.help-submit.html:63
#: ../share/roundup/templates/responsive/html/user.help.html:108
msgid " Apply "
msgstr ""

#: ../share/roundup/templates/classic/html/_generic.help.html:9
#: ../share/roundup/templates/classic/html/user.help.html:13
#: ../share/roundup/templates/minimal/html/_generic.help.html:9
msgid "${property} help - ${tracker}"
msgstr ""

#: ../share/roundup/templates/classic/html/_generic.help.html:41
#: ../share/roundup/templates/classic/html/help.html:21
#: ../share/roundup/templates/classic/html/issue.index.html:80
#: ../share/roundup/templates/classic/html/user.index.html:82
#: ../share/roundup/templates/devel/html/_generic.help.html:42
#: ../share/roundup/templates/devel/html/bug.index.html:94
#: ../share/roundup/templates/devel/html/help.html:51
#: ../share/roundup/templates/devel/html/milestone.index.html:59
#: ../share/roundup/templates/devel/html/task.index.html:94
#: ../share/roundup/templates/devel/html/user.index.html:76
#: ../share/roundup/templates/minimal/html/_generic.help.html:41
#: ../share/roundup/templates/responsive/html/_generic.help.html:42
#: ../share/roundup/templates/responsive/html/help.html:59
#: ../share/roundup/templates/responsive/html/user.index.html:77
msgid "&lt;&lt; previous"
msgstr ""

#: ../share/roundup/templates/classic/html/_generic.help.html:53
#: ../share/roundup/templates/classic/html/help.html:28
#: ../share/roundup/templates/classic/html/issue.index.html:88
#: ../share/roundup/templates/classic/html/user.index.html:90
#: ../share/roundup/templates/devel/html/_generic.help.html:54
#: ../share/roundup/templates/devel/html/bug.index.html:102
#: ../share/roundup/templates/devel/html/help.html:58
#: ../share/roundup/templates/devel/html/milestone.index.html:67
#: ../share/roundup/templates/devel/html/task.index.html:102
#: ../share/roundup/templates/devel/html/user.index.html:84
#: ../share/roundup/templates/minimal/html/_generic.help.html:53
#: ../share/roundup/templates/responsive/html/_generic.help.html:54
#: ../share/roundup/templates/responsive/html/help.html:66
#: ../share/roundup/templates/responsive/html/user.index.html:85
msgid "${start}..${end} out of ${total}"
msgstr ""

#: ../share/roundup/templates/classic/html/_generic.help.html:57
#: ../share/roundup/templates/classic/html/help.html:32
#: ../share/roundup/templates/classic/html/issue.index.html:91
#: ../share/roundup/templates/classic/html/user.index.html:93
#: ../share/roundup/templates/devel/html/_generic.help.html:58
#: ../share/roundup/templates/devel/html/bug.index.html:105
#: ../share/roundup/templates/devel/html/help.html:62
#: ../share/roundup/templates/devel/html/milestone.index.html:70
#: ../share/roundup/templates/devel/html/task.index.html:105
#: ../share/roundup/templates/devel/html/user.index.html:87
#: ../share/roundup/templates/minimal/html/_generic.help.html:57
#: ../share/roundup/templates/responsive/html/_generic.help.html:58
#: ../share/roundup/templates/responsive/html/help.html:70
#: ../share/roundup/templates/responsive/html/user.index.html:88
msgid "next &gt;&gt;"
msgstr ""

#: ../share/roundup/templates/classic/html/_generic.index.html:6
#: ../share/roundup/templates/classic/html/_generic.item.html:4
#: ../share/roundup/templates/devel/html/_generic.index.html:4
#: ../share/roundup/templates/devel/html/_generic.item.html:4
#: ../share/roundup/templates/minimal/html/_generic.index.html:6
#: ../share/roundup/templates/minimal/html/_generic.item.html:4
#: ../share/roundup/templates/responsive/html/_generic.index.html:4
#: ../share/roundup/templates/responsive/html/_generic.item.html:4
msgid "${class} editing - ${tracker}"
msgstr ""

#: ../share/roundup/templates/classic/html/_generic.index.html:9
#: ../share/roundup/templates/classic/html/_generic.item.html:7
#: ../share/roundup/templates/devel/html/_generic.index.html:7
#: ../share/roundup/templates/devel/html/_generic.item.html:7
#: ../share/roundup/templates/minimal/html/_generic.index.html:9
#: ../share/roundup/templates/minimal/html/_generic.item.html:7
#: ../share/roundup/templates/responsive/html/_generic.index.html:7
#: ../share/roundup/templates/responsive/html/_generic.item.html:7
msgid "${class} editing"
msgstr ""

#: ../share/roundup/templates/classic/html/_generic.index.html:19
#: ../share/roundup/templates/classic/html/_generic.item.html:16
#: ../share/roundup/templates/classic/html/file.item.html:13
#: ../share/roundup/templates/classic/html/issue.index.html:19
#: ../share/roundup/templates/classic/html/issue.item.html:32
#: ../share/roundup/templates/classic/html/msg.item.html:30
#: ../share/roundup/templates/classic/html/user.index.html:13
#: ../share/roundup/templates/classic/html/user.item.html:39
#: ../share/roundup/templates/devel/html/_generic.index.html:17
#: ../share/roundup/templates/devel/html/_generic.item.html:16
#: ../share/roundup/templates/devel/html/bug.index.html:19
#: ../share/roundup/templates/devel/html/bug.item.html:31
#: ../share/roundup/templates/devel/html/file.item.html:13
#: ../share/roundup/templates/devel/html/keyword.index.html:19
#: ../share/roundup/templates/devel/html/keyword.item.html:37
#: ../share/roundup/templates/devel/html/milestone.index.html:19
#: ../share/roundup/templates/devel/html/msg.item.html:29
#: ../share/roundup/templates/devel/html/patch.item.html:13
#: ../share/roundup/templates/devel/html/patch.item.html:101
#: ../share/roundup/templates/devel/html/task.index.html:19
#: ../share/roundup/templates/devel/html/task.item.html:31
#: ../share/roundup/templates/devel/html/user.index.html:12
#: ../share/roundup/templates/devel/html/user.item.html:38
#: ../share/roundup/templates/minimal/html/_generic.index.html:19
#: ../share/roundup/templates/minimal/html/_generic.item.html:16
#: ../share/roundup/templates/minimal/html/user.index.html:13
#: ../share/roundup/templates/minimal/html/user.item.html:38
#: ../share/roundup/templates/minimal/html/user.register.html:17
#: ../share/roundup/templates/responsive/html/_generic.index.html:17
#: ../share/roundup/templates/responsive/html/_generic.item.html:16
#: ../share/roundup/templates/responsive/html/bug.index.html:19
#: ../share/roundup/templates/responsive/html/bug.item.html:31
#: ../share/roundup/templates/responsive/html/file.item.html:13
#: ../share/roundup/templates/responsive/html/keyword.index.html:19
#: ../share/roundup/templates/responsive/html/keyword.item.html:37
#: ../share/roundup/templates/responsive/html/milestone.index.html:19
#: ../share/roundup/templates/responsive/html/msg.item.html:30
#: ../share/roundup/templates/responsive/html/patch.item.html:13
#: ../share/roundup/templates/responsive/html/patch.item.html:99
#: ../share/roundup/templates/responsive/html/task.index.html:19
#: ../share/roundup/templates/responsive/html/task.item.html:31
#: ../share/roundup/templates/responsive/html/user.index.html:12
#: ../share/roundup/templates/responsive/html/user.item.html:38
msgid "Please login with your username and password."
msgstr ""

#: ../share/roundup/templates/classic/html/_generic.index.html:28
#: ../share/roundup/templates/minimal/html/_generic.index.html:28
msgid ""
"<p class=\"form-help\"> You may edit the contents of the ${classname} class "
"using this form. Commas, newlines and double quotes (\") must be handled "
"delicately. You may include commas and newlines by enclosing the values in "
"double-quotes (\"). Double quotes themselves must be quoted by doubling "
"(\"\"). </p> <p class=\"form-help\"> Multilink properties have their multiple "
"values colon (\":\") separated (... ,\"one:two:three\", ...) </p> <p class="
"\"form-help\"> Remove entries by deleting their line. Add new entries by "
"appending them to the table - put an X in the id column. If you wish to "
"restore a removed item and you know its id then just put that id in the id "
"column. </p>"
msgstr ""

#: ../share/roundup/templates/classic/html/_generic.index.html:53
#: ../share/roundup/templates/devel/html/_generic.index.html:50
#: ../share/roundup/templates/minimal/html/_generic.index.html:53
#: ../share/roundup/templates/responsive/html/_generic.index.html:50
msgid "Edit Items"
msgstr ""

#: ../share/roundup/templates/classic/html/_generic.item.html:52
#: ../share/roundup/templates/minimal/html/_generic.item.html:52
msgid ""
"Showing 10 items. <a href=\"\">Show all history</a> (warning: this could be "
"VERY long)"
msgstr ""

#: ../share/roundup/templates/classic/html/file.index.html:4
#: ../share/roundup/templates/devel/html/file.index.html:3
#: ../share/roundup/templates/responsive/html/file.index.html:3
msgid "List of files - ${tracker}"
msgstr ""

#: ../share/roundup/templates/classic/html/file.index.html:5
#: ../share/roundup/templates/devel/html/file.index.html:4
#: ../share/roundup/templates/responsive/html/file.index.html:4
msgid "List of files"
msgstr ""

#: ../share/roundup/templates/classic/html/file.index.html:10
#: ../share/roundup/templates/devel/html/file.index.html:9
#: ../share/roundup/templates/devel/html/patch.index.html:10
#: ../share/roundup/templates/devel/html/patch.index.html:43
#: ../share/roundup/templates/responsive/html/file.index.html:9
#: ../share/roundup/templates/responsive/html/patch.index.html:10
#: ../share/roundup/templates/responsive/html/patch.index.html:43
msgid "Download"
msgstr ""

#: ../share/roundup/templates/classic/html/file.index.html:11
#: ../share/roundup/templates/classic/html/file.item.html:27
#: ../share/roundup/templates/devel/html/file.index.html:11
#: ../share/roundup/templates/devel/html/file.item.html:31
#: ../share/roundup/templates/devel/html/patch.index.html:12
#: ../share/roundup/templates/devel/html/patch.index.html:45
#: ../share/roundup/templates/devel/html/patch.item.html:31
#: ../share/roundup/templates/devel/html/patch.item.html:119
#: ../share/roundup/templates/responsive/html/file.index.html:11
#: ../share/roundup/templates/responsive/html/file.item.html:31
#: ../share/roundup/templates/responsive/html/patch.index.html:12
#: ../share/roundup/templates/responsive/html/patch.index.html:45
#: ../share/roundup/templates/responsive/html/patch.item.html:31
#: ../share/roundup/templates/responsive/html/patch.item.html:117
msgid "Content Type"
msgstr ""

#: ../share/roundup/templates/classic/html/file.index.html:12
#: ../share/roundup/templates/devel/html/file.index.html:12
#: ../share/roundup/templates/devel/html/patch.index.html:13
#: ../share/roundup/templates/devel/html/patch.index.html:46
#: ../share/roundup/templates/responsive/html/file.index.html:12
#: ../share/roundup/templates/responsive/html/patch.index.html:13
#: ../share/roundup/templates/responsive/html/patch.index.html:46
msgid "Uploaded By"
msgstr ""

#: ../share/roundup/templates/classic/html/file.index.html:13
#: ../share/roundup/templates/classic/html/msg.item.html:48
#: ../share/roundup/templates/devel/html/file.index.html:13
#: ../share/roundup/templates/devel/html/msg.item.html:47
#: ../share/roundup/templates/devel/html/patch.index.html:14
#: ../share/roundup/templates/devel/html/patch.index.html:47
#: ../share/roundup/templates/responsive/html/file.index.html:13
#: ../share/roundup/templates/responsive/html/msg.item.html:40
#: ../share/roundup/templates/responsive/html/patch.index.html:14
#: ../share/roundup/templates/responsive/html/patch.index.html:47
msgid "Date"
msgstr ""

#: ../share/roundup/templates/classic/html/file.item.html:2
#: ../share/roundup/templates/devel/html/file.item.html:2
#: ../share/roundup/templates/responsive/html/file.item.html:2
msgid "File display - ${tracker}"
msgstr ""

#: ../share/roundup/templates/classic/html/file.item.html:4
#: ../share/roundup/templates/devel/html/file.item.html:4
#: ../share/roundup/templates/responsive/html/file.item.html:4
msgid "File display"
msgstr ""

#: ../share/roundup/templates/classic/html/file.item.html:23
#: ../share/roundup/templates/classic/html/user.register.html:19
#: ../share/roundup/templates/devel/html/file.item.html:23
#: ../share/roundup/templates/devel/html/patch.item.html:23
#: ../share/roundup/templates/devel/html/patch.item.html:111
#: ../share/roundup/templates/devel/html/user.register.html:26
#: ../share/roundup/templates/responsive/html/file.item.html:23
#: ../share/roundup/templates/responsive/html/patch.item.html:23
#: ../share/roundup/templates/responsive/html/patch.item.html:109
#: ../share/roundup/templates/responsive/html/user.register.html:25
msgid "Name"
msgstr ""

#: ../share/roundup/templates/classic/html/file.item.html:45
#: ../share/roundup/templates/devel/html/file.item.html:53
#: ../share/roundup/templates/devel/html/patch.item.html:61
#: ../share/roundup/templates/devel/html/patch.item.html:149
#: ../share/roundup/templates/responsive/html/file.item.html:53
#: ../share/roundup/templates/responsive/html/patch.item.html:61
#: ../share/roundup/templates/responsive/html/patch.item.html:147
msgid "download"
msgstr ""

#: ../share/roundup/templates/classic/html/home.classlist.html:2
#: ../share/roundup/templates/devel/html/home.classlist.html:2
#: ../share/roundup/templates/minimal/html/home.classlist.html:2
#: ../share/roundup/templates/responsive/html/home.classlist.html:2
msgid "List of classes - ${tracker}"
msgstr ""

#: ../share/roundup/templates/classic/html/home.classlist.html:4
#: ../share/roundup/templates/devel/html/home.classlist.html:4
#: ../share/roundup/templates/minimal/html/home.classlist.html:4
#: ../share/roundup/templates/responsive/html/home.classlist.html:4
msgid "List of classes"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.index.html:3
#: ../share/roundup/templates/classic/html/issue.index.html:9
msgid "List of issues"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.index.html:26
#: ../share/roundup/templates/classic/html/issue.item.html:49
#: ../share/roundup/templates/responsive/html/bug.item.html:142
#: ../share/roundup/templates/responsive/html/bug.item.html:241
#: ../share/roundup/templates/responsive/html/task.item.html:118
#: ../share/roundup/templates/responsive/html/task.item.html:215
msgid "Priority"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.index.html:27
#: ../share/roundup/templates/devel/html/bug.index.html:27
#: ../share/roundup/templates/devel/html/milestone.index.html:26
#: ../share/roundup/templates/devel/html/task.index.html:27
#: ../share/roundup/templates/responsive/html/bug.index.html:27
#: ../share/roundup/templates/responsive/html/milestone.index.html:26
#: ../share/roundup/templates/responsive/html/task.index.html:26
msgid "ID"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.index.html:28
#: ../share/roundup/templates/devel/html/bug.index.html:28
#: ../share/roundup/templates/devel/html/task.index.html:28
#: ../share/roundup/templates/responsive/html/task.index.html:27
msgid "Creation"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.index.html:29
#: ../share/roundup/templates/devel/html/bug.index.html:29
#: ../share/roundup/templates/devel/html/task.index.html:29
#: ../share/roundup/templates/responsive/html/bug.index.html:28
#: ../share/roundup/templates/responsive/html/task.index.html:28
msgid "Activity"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.index.html:30
#: ../share/roundup/templates/devel/html/bug.index.html:30
#: ../share/roundup/templates/devel/html/task.index.html:30
#: ../share/roundup/templates/responsive/html/bug.index.html:29
#: ../share/roundup/templates/responsive/html/task.index.html:29
msgid "Actor"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.index.html:31
#: ../share/roundup/templates/classic/html/keyword.item.html:37
#: ../share/roundup/templates/devel/html/keyword.index.html:25
#: ../share/roundup/templates/responsive/html/keyword.index.html:25
msgid "Keyword"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.index.html:32
#: ../share/roundup/templates/classic/html/issue.item.html:44
#: ../share/roundup/templates/devel/html/bug.index.html:31
#: ../share/roundup/templates/devel/html/milestone.index.html:27
#: ../share/roundup/templates/devel/html/task.index.html:31
#: ../share/roundup/templates/responsive/html/bug.index.html:30
#: ../share/roundup/templates/responsive/html/bug.item.html:44
#: ../share/roundup/templates/responsive/html/bug.item.html:57
#: ../share/roundup/templates/responsive/html/milestone.index.html:27
#: ../share/roundup/templates/responsive/html/task.index.html:30
#: ../share/roundup/templates/responsive/html/task.item.html:45
#: ../share/roundup/templates/responsive/html/task.item.html:56
#: ../share/roundup/templates/responsive/html/task.item.html:62
msgid "Title"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.index.html:33
#: ../share/roundup/templates/classic/html/issue.item.html:51
#: ../share/roundup/templates/devel/html/bug.index.html:34
#: ../share/roundup/templates/devel/html/milestone.index.html:28
#: ../share/roundup/templates/devel/html/task.index.html:34
#: ../share/roundup/templates/responsive/html/bug.index.html:33
#: ../share/roundup/templates/responsive/html/bug.item.html:128
#: ../share/roundup/templates/responsive/html/bug.item.html:159
#: ../share/roundup/templates/responsive/html/milestone.index.html:28
#: ../share/roundup/templates/responsive/html/task.index.html:32
#: ../share/roundup/templates/responsive/html/task.item.html:104
#: ../share/roundup/templates/responsive/html/task.item.html:133
msgid "Status"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.index.html:34
#: ../share/roundup/templates/devel/html/bug.index.html:36
#: ../share/roundup/templates/devel/html/task.index.html:36
#: ../share/roundup/templates/responsive/html/bug.index.html:35
msgid "Creator"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.index.html:35
#: ../share/roundup/templates/devel/html/bug.index.html:37
#: ../share/roundup/templates/devel/html/task.index.html:37
#: ../share/roundup/templates/responsive/html/bug.index.html:36
#: ../share/roundup/templates/responsive/html/task.index.html:34
msgid "Assigned&nbsp;To"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.index.html:104
msgid "Download as CSV"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.index.html:114
msgid "Sort on:"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.index.html:118
#: ../share/roundup/templates/classic/html/issue.index.html:139
#: ../share/roundup/templates/devel/html/bug.index.html:155
#: ../share/roundup/templates/devel/html/milestone.index.html:120
#: ../share/roundup/templates/devel/html/task.index.html:155
#: ../share/roundup/templates/responsive/html/bug.index.html:143
#: ../share/roundup/templates/responsive/html/milestone.index.html:118
#: ../share/roundup/templates/responsive/html/task.index.html:138
msgid "- nothing -"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.index.html:126
#: ../share/roundup/templates/classic/html/issue.index.html:147
#: ../share/roundup/templates/devel/html/bug.index.html:163
#: ../share/roundup/templates/devel/html/milestone.index.html:128
#: ../share/roundup/templates/devel/html/task.index.html:163
#: ../share/roundup/templates/responsive/html/bug.index.html:151
#: ../share/roundup/templates/responsive/html/milestone.index.html:126
#: ../share/roundup/templates/responsive/html/task.index.html:146
msgid "Descending:"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.index.html:135
#: ../share/roundup/templates/devel/html/bug.index.html:151
#: ../share/roundup/templates/devel/html/milestone.index.html:116
#: ../share/roundup/templates/devel/html/task.index.html:151
#: ../share/roundup/templates/responsive/html/bug.index.html:139
#: ../share/roundup/templates/responsive/html/milestone.index.html:114
#: ../share/roundup/templates/responsive/html/task.index.html:134
msgid "Group on:"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.index.html:154
#: ../share/roundup/templates/devel/html/bug.index.html:170
#: ../share/roundup/templates/devel/html/milestone.index.html:135
#: ../share/roundup/templates/devel/html/task.index.html:170
#: ../share/roundup/templates/responsive/html/bug.index.html:158
#: ../share/roundup/templates/responsive/html/milestone.index.html:133
#: ../share/roundup/templates/responsive/html/task.index.html:153
msgid "Redisplay"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.item.html:7
msgid "Issue ${id}: ${title} - ${tracker}"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.item.html:10
msgid "New Issue - ${tracker}"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.item.html:14
msgid "New Issue"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.item.html:16
msgid "New Issue Editing"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.item.html:19
msgid "Issue${id}"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.item.html:22
msgid "Issue${id} Editing"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.item.html:56
#: ../share/roundup/templates/devel/html/bug.item.html:115
#: ../share/roundup/templates/devel/html/task.item.html:90
#: ../share/roundup/templates/responsive/html/bug.item.html:134
#: ../share/roundup/templates/responsive/html/task.item.html:110
msgid "Superseder"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.item.html:61
msgid "View:"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.item.html:67
#: ../share/roundup/templates/devel/html/bug.item.html:135
#: ../share/roundup/templates/devel/html/task.item.html:110
#: ../share/roundup/templates/responsive/html/bug.item.html:224
#: ../share/roundup/templates/responsive/html/task.item.html:198
msgid "Nosy List"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.item.html:76
#: ../share/roundup/templates/devel/html/bug.item.html:133
#: ../share/roundup/templates/devel/html/task.item.html:108
#: ../share/roundup/templates/responsive/html/bug.item.html:216
#: ../share/roundup/templates/responsive/html/task.item.html:190
msgid "Assigned To"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.item.html:78
#: ../share/roundup/templates/classic/html/page.html:105
#: ../share/roundup/templates/devel/html/bug.index.html:38
#: ../share/roundup/templates/devel/html/task.index.html:38
#: ../share/roundup/templates/minimal/html/page.html:105
#: ../share/roundup/templates/responsive/html/bug.item.html:144
msgid "Keywords"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.item.html:86
msgid "Change Note"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.item.html:94
#: ../share/roundup/templates/devel/html/bug.item.html:164
#: ../share/roundup/templates/devel/html/task.item.html:133
#: ../share/roundup/templates/responsive/html/bug.item.html:274
#: ../share/roundup/templates/responsive/html/task.item.html:241
msgid "File"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.item.html:106
#: ../share/roundup/templates/devel/html/bug.item.html:207
#: ../share/roundup/templates/devel/html/task.item.html:154
#: ../share/roundup/templates/responsive/html/bug.item.html:301
#: ../share/roundup/templates/responsive/html/task.item.html:268
msgid "Make a copy"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.item.html:114
#: ../share/roundup/templates/classic/html/user.item.html:153
#: ../share/roundup/templates/classic/html/user.register.html:74
#: ../share/roundup/templates/devel/html/user.item.html:149
#: ../share/roundup/templates/devel/html/user.register.html:81
#: ../share/roundup/templates/minimal/html/user.item.html:103
#: ../share/roundup/templates/responsive/html/user.item.html:149
#: ../share/roundup/templates/responsive/html/user.register.html:80
msgid ""
"<table class=\"form\"> <tr> <td>Note:&nbsp;</td> <th class=\"required"
"\">highlighted</th> <td>&nbsp;fields are required.</td> </tr> </table>"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.item.html:128
msgid ""
"Created on ${creation} by ${creator}, last changed ${activity} by ${actor}."
msgstr ""

#: ../share/roundup/templates/classic/html/issue.item.html:132
#: ../share/roundup/templates/classic/html/msg.item.html:61
#: ../share/roundup/templates/devel/html/bug.item.html:222
#: ../share/roundup/templates/devel/html/msg.item.html:103
#: ../share/roundup/templates/devel/html/task.item.html:169
#: ../share/roundup/templates/responsive/html/msg.item.html:56
msgid "Files"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.item.html:134
#: ../share/roundup/templates/classic/html/msg.item.html:63
#: ../share/roundup/templates/devel/html/bug.item.html:224
#: ../share/roundup/templates/devel/html/msg.item.html:105
#: ../share/roundup/templates/devel/html/task.item.html:171
#: ../share/roundup/templates/responsive/html/bug.item.html:316
#: ../share/roundup/templates/responsive/html/msg.item.html:58
#: ../share/roundup/templates/responsive/html/task.item.html:283
msgid "File name"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.item.html:135
#: ../share/roundup/templates/classic/html/msg.item.html:64
#: ../share/roundup/templates/devel/html/bug.item.html:225
#: ../share/roundup/templates/devel/html/msg.item.html:106
#: ../share/roundup/templates/devel/html/task.item.html:172
#: ../share/roundup/templates/responsive/html/bug.item.html:317
#: ../share/roundup/templates/responsive/html/msg.item.html:59
#: ../share/roundup/templates/responsive/html/task.item.html:284
msgid "Uploaded"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.item.html:136
#: ../share/roundup/templates/devel/html/bug.index.html:40
#: ../share/roundup/templates/devel/html/task.index.html:40
#: ../share/roundup/templates/responsive/html/bug.index.html:37
#: ../share/roundup/templates/responsive/html/bug.item.html:46
#: ../share/roundup/templates/responsive/html/bug.item.html:71
#: ../share/roundup/templates/responsive/html/task.index.html:35
#: ../share/roundup/templates/responsive/html/task.item.html:47
#: ../share/roundup/templates/responsive/html/task.item.html:76
msgid "Type"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.item.html:137
#: ../share/roundup/templates/classic/html/query.edit.html:60
#: ../share/roundup/templates/devel/html/bug.item.html:227
#: ../share/roundup/templates/devel/html/query.edit.html:62
#: ../share/roundup/templates/devel/html/task.item.html:174
#: ../share/roundup/templates/responsive/html/bug.item.html:319
#: ../share/roundup/templates/responsive/html/query.edit.html:62
#: ../share/roundup/templates/responsive/html/task.item.html:286
msgid "Edit"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.item.html:138
#: ../share/roundup/templates/devel/html/bug.item.html:228
#: ../share/roundup/templates/devel/html/task.item.html:175
#: ../share/roundup/templates/responsive/html/bug.item.html:320
#: ../share/roundup/templates/responsive/html/task.item.html:287
msgid "Remove"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.item.html:160
#: ../share/roundup/templates/classic/html/issue.item.html:183
#: ../share/roundup/templates/classic/html/query.edit.html:83
#: ../share/roundup/templates/devel/html/bug.item.html:248
#: ../share/roundup/templates/devel/html/bug.item.html:305
#: ../share/roundup/templates/devel/html/query.edit.html:82
#: ../share/roundup/templates/devel/html/task.item.html:197
#: ../share/roundup/templates/devel/html/task.item.html:221
#: ../share/roundup/templates/responsive/html/bug.item.html:341
#: ../share/roundup/templates/responsive/html/bug.item.html:365
#: ../share/roundup/templates/responsive/html/query.edit.html:82
#: ../share/roundup/templates/responsive/html/task.item.html:310
#: ../share/roundup/templates/responsive/html/task.item.html:334
msgid "remove"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.item.html:167
#: ../share/roundup/templates/classic/html/msg.index.html:9
#: ../share/roundup/templates/devel/html/bug.item.html:291
#: ../share/roundup/templates/devel/html/msg.index.html:9
#: ../share/roundup/templates/devel/html/task.item.html:204
#: ../share/roundup/templates/responsive/html/bug.item.html:347
#: ../share/roundup/templates/responsive/html/msg.index.html:9
#: ../share/roundup/templates/responsive/html/task.item.html:316
msgid "Messages"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.item.html:171
msgid "msg${id} (view)"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.item.html:172
msgid "Author: ${author}"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.item.html:174
#: ../share/roundup/templates/devel/html/bug.item.html:298
#: ../share/roundup/templates/devel/html/task.item.html:211
#: ../share/roundup/templates/responsive/html/bug.item.html:357
#: ../share/roundup/templates/responsive/html/task.item.html:326
msgid "Date: ${date}"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.search.html:2
msgid "Issue searching - ${tracker}"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.search.html:4
msgid "Issue searching"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.search.html:32
#: ../share/roundup/templates/devel/html/bug.search.html:32
#: ../share/roundup/templates/devel/html/task.search.html:32
#: ../share/roundup/templates/responsive/html/bug.search.html:32
#: ../share/roundup/templates/responsive/html/task.search.html:32
msgid "Filter on"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.search.html:33
#: ../share/roundup/templates/devel/html/bug.search.html:33
#: ../share/roundup/templates/devel/html/task.search.html:33
#: ../share/roundup/templates/responsive/html/bug.search.html:33
#: ../share/roundup/templates/responsive/html/task.search.html:33
msgid "Display"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.search.html:34
#: ../share/roundup/templates/devel/html/bug.search.html:34
#: ../share/roundup/templates/devel/html/task.search.html:34
#: ../share/roundup/templates/responsive/html/bug.search.html:34
#: ../share/roundup/templates/responsive/html/task.search.html:34
msgid "Sort on"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.search.html:35
#: ../share/roundup/templates/devel/html/bug.search.html:35
#: ../share/roundup/templates/devel/html/task.search.html:35
#: ../share/roundup/templates/responsive/html/bug.search.html:35
#: ../share/roundup/templates/responsive/html/task.search.html:35
msgid "Group on"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.search.html:39
#: ../share/roundup/templates/devel/html/bug.search.html:39
#: ../share/roundup/templates/devel/html/task.search.html:39
#: ../share/roundup/templates/responsive/html/bug.search.html:39
#: ../share/roundup/templates/responsive/html/task.search.html:39
msgid "All text*:"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.search.html:47
#: ../share/roundup/templates/devel/html/bug.item.html:44
#: ../share/roundup/templates/devel/html/bug.search.html:47
#: ../share/roundup/templates/devel/html/task.item.html:44
#: ../share/roundup/templates/devel/html/task.search.html:47
#: ../share/roundup/templates/responsive/html/bug.search.html:47
#: ../share/roundup/templates/responsive/html/task.search.html:47
msgid "Title:"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.search.html:57
#: ../share/roundup/templates/devel/html/bug.search.html:194
#: ../share/roundup/templates/devel/html/keyword.item.html:51
#: ../share/roundup/templates/devel/html/task.search.html:194
#: ../share/roundup/templates/responsive/html/bug.search.html:194
#: ../share/roundup/templates/responsive/html/keyword.item.html:51
msgid "Keyword:"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.search.html:59
#: ../share/roundup/templates/classic/html/issue.search.html:124
#: ../share/roundup/templates/classic/html/issue.search.html:140
#: ../share/roundup/templates/devel/html/bug.search.html:117
#: ../share/roundup/templates/devel/html/bug.search.html:130
#: ../share/roundup/templates/devel/html/bug.search.html:143
#: ../share/roundup/templates/devel/html/bug.search.html:209
#: ../share/roundup/templates/devel/html/bug.search.html:225
#: ../share/roundup/templates/devel/html/task.search.html:117
#: ../share/roundup/templates/devel/html/task.search.html:130
#: ../share/roundup/templates/devel/html/task.search.html:143
#: ../share/roundup/templates/devel/html/task.search.html:209
#: ../share/roundup/templates/devel/html/task.search.html:225
#: ../share/roundup/templates/responsive/html/bug.search.html:117
#: ../share/roundup/templates/responsive/html/bug.search.html:130
#: ../share/roundup/templates/responsive/html/bug.search.html:143
#: ../share/roundup/templates/responsive/html/bug.search.html:209
#: ../share/roundup/templates/responsive/html/bug.search.html:225
#: ../share/roundup/templates/responsive/html/task.search.html:117
#: ../share/roundup/templates/responsive/html/task.search.html:130
#: ../share/roundup/templates/responsive/html/task.search.html:170
#: ../share/roundup/templates/responsive/html/task.search.html:186
msgid "not selected"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.search.html:68
#: ../share/roundup/templates/devel/html/bug.search.html:55
#: ../share/roundup/templates/devel/html/task.search.html:55
#: ../share/roundup/templates/responsive/html/bug.search.html:55
#: ../share/roundup/templates/responsive/html/task.search.html:55
msgid "ID:"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.search.html:76
#: ../share/roundup/templates/devel/html/bug.search.html:63
#: ../share/roundup/templates/devel/html/task.search.html:63
#: ../share/roundup/templates/responsive/html/bug.search.html:63
#: ../share/roundup/templates/responsive/html/task.search.html:63
msgid "Creation Date:"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.search.html:87
#: ../share/roundup/templates/devel/html/bug.search.html:73
#: ../share/roundup/templates/devel/html/task.search.html:73
#: ../share/roundup/templates/responsive/html/bug.search.html:73
#: ../share/roundup/templates/responsive/html/task.search.html:73
msgid "Creator:"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.search.html:89
#: ../share/roundup/templates/devel/html/bug.search.html:75
#: ../share/roundup/templates/devel/html/task.search.html:75
#: ../share/roundup/templates/responsive/html/bug.search.html:75
#: ../share/roundup/templates/responsive/html/task.search.html:75
msgid "created by me"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.search.html:98
#: ../share/roundup/templates/devel/html/bug.search.html:84
#: ../share/roundup/templates/devel/html/task.search.html:84
#: ../share/roundup/templates/responsive/html/bug.search.html:84
#: ../share/roundup/templates/responsive/html/task.search.html:84
msgid "Activity:"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.search.html:109
msgid "Actor:"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.search.html:111
#: ../share/roundup/templates/devel/html/bug.search.html:96
#: ../share/roundup/templates/devel/html/task.search.html:96
#: ../share/roundup/templates/responsive/html/bug.search.html:96
#: ../share/roundup/templates/responsive/html/task.search.html:96
msgid "done by me"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.search.html:122
#: ../share/roundup/templates/devel/html/bug.search.html:207
#: ../share/roundup/templates/devel/html/task.search.html:207
#: ../share/roundup/templates/responsive/html/bug.search.html:207
#: ../share/roundup/templates/responsive/html/task.search.html:168
msgid "Priority:"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.search.html:135
#: ../share/roundup/templates/devel/html/bug.search.html:220
#: ../share/roundup/templates/devel/html/task.search.html:220
#: ../share/roundup/templates/responsive/html/bug.search.html:220
#: ../share/roundup/templates/responsive/html/task.search.html:181
msgid "Status:"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.search.html:138
msgid "not resolved"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.search.html:153
#: ../share/roundup/templates/devel/html/bug.search.html:177
#: ../share/roundup/templates/devel/html/task.search.html:177
#: ../share/roundup/templates/responsive/html/bug.search.html:177
#: ../share/roundup/templates/responsive/html/task.search.html:151
msgid "Assigned to:"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.search.html:156
#: ../share/roundup/templates/devel/html/bug.search.html:180
#: ../share/roundup/templates/devel/html/task.search.html:180
#: ../share/roundup/templates/responsive/html/bug.search.html:180
#: ../share/roundup/templates/responsive/html/task.search.html:154
msgid "assigned to me"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.search.html:158
#: ../share/roundup/templates/devel/html/bug.search.html:182
#: ../share/roundup/templates/devel/html/task.search.html:182
#: ../share/roundup/templates/responsive/html/bug.search.html:182
#: ../share/roundup/templates/responsive/html/task.search.html:156
msgid "unassigned"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.search.html:168
#: ../share/roundup/templates/devel/html/bug.search.html:245
#: ../share/roundup/templates/devel/html/task.search.html:245
#: ../share/roundup/templates/responsive/html/bug.search.html:245
#: ../share/roundup/templates/responsive/html/task.search.html:206
msgid "No Sort or group:"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.search.html:176
#: ../share/roundup/templates/devel/html/bug.search.html:253
#: ../share/roundup/templates/devel/html/task.search.html:253
#: ../share/roundup/templates/responsive/html/bug.search.html:253
#: ../share/roundup/templates/responsive/html/task.search.html:214
msgid "Pagesize:"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.search.html:182
#: ../share/roundup/templates/devel/html/bug.search.html:259
#: ../share/roundup/templates/devel/html/task.search.html:259
#: ../share/roundup/templates/responsive/html/bug.search.html:259
#: ../share/roundup/templates/responsive/html/task.search.html:220
msgid "Start With:"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.search.html:188
#: ../share/roundup/templates/devel/html/bug.search.html:265
#: ../share/roundup/templates/devel/html/task.search.html:265
#: ../share/roundup/templates/responsive/html/bug.search.html:265
#: ../share/roundup/templates/responsive/html/task.search.html:226
msgid "Sort Descending:"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.search.html:195
#: ../share/roundup/templates/devel/html/bug.search.html:272
#: ../share/roundup/templates/devel/html/task.search.html:272
#: ../share/roundup/templates/responsive/html/bug.search.html:272
#: ../share/roundup/templates/responsive/html/task.search.html:233
msgid "Group Descending:"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.search.html:202
#: ../share/roundup/templates/devel/html/bug.search.html:279
#: ../share/roundup/templates/devel/html/task.search.html:279
#: ../share/roundup/templates/responsive/html/bug.search.html:279
#: ../share/roundup/templates/responsive/html/task.search.html:240
msgid "Query name**:"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.search.html:215
#: ../share/roundup/templates/classic/html/page.html:40
#: ../share/roundup/templates/classic/html/page.html:92
#: ../share/roundup/templates/classic/html/user.help-search.html:69
#: ../share/roundup/templates/classic/html/user.index.html:38
#: ../share/roundup/templates/devel/html/bug.search.html:292
#: ../share/roundup/templates/devel/html/page.html:79
#: ../share/roundup/templates/devel/html/page.html:126
#: ../share/roundup/templates/devel/html/task.search.html:292
#: ../share/roundup/templates/devel/html/user.help-search.html:69
#: ../share/roundup/templates/devel/html/user.help.html:77
#: ../share/roundup/templates/devel/html/user.index.html:37
#: ../share/roundup/templates/minimal/html/page.html:40
#: ../share/roundup/templates/minimal/html/page.html:92
#: ../share/roundup/templates/responsive/html/bug.search.html:292
#: ../share/roundup/templates/responsive/html/page.html:95
#: ../share/roundup/templates/responsive/html/page.html:143
#: ../share/roundup/templates/responsive/html/task.search.html:253
#: ../share/roundup/templates/responsive/html/user.help-search.html:69
#: ../share/roundup/templates/responsive/html/user.help.html:77
#: ../share/roundup/templates/responsive/html/user.index.html:39
msgid "Search"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.search.html:220
msgid "*: The \"all text\" field will look in message bodies and issue titles"
msgstr ""

#: ../share/roundup/templates/classic/html/issue.search.html:223
#: ../share/roundup/templates/devel/html/bug.search.html:300
#: ../share/roundup/templates/devel/html/task.search.html:300
#: ../share/roundup/templates/responsive/html/bug.search.html:300
#: ../share/roundup/templates/responsive/html/task.search.html:261
msgid ""
"**: If you supply a name, the query will be saved off and available as a link "
"in the sidebar"
msgstr ""

#: ../share/roundup/templates/classic/html/keyword.item.html:3
msgid "Keyword editing - ${tracker}"
msgstr ""

#: ../share/roundup/templates/classic/html/keyword.item.html:5
msgid "Keyword editing"
msgstr ""

#: ../share/roundup/templates/classic/html/keyword.item.html:11
msgid "Existing Keywords"
msgstr ""

#: ../share/roundup/templates/classic/html/keyword.item.html:20
msgid ""
"To edit an existing keyword (for spelling or typing errors), click on its "
"entry above."
msgstr ""

#: ../share/roundup/templates/classic/html/keyword.item.html:27
msgid "To create a new keyword, enter it below and click \"Submit New Entry\"."
msgstr ""

#: ../share/roundup/templates/classic/html/keyword.item.html:51
msgid "Continue adding keywords."
msgstr ""

#: ../share/roundup/templates/classic/html/msg.index.html:3
#: ../share/roundup/templates/devel/html/msg.index.html:3
#: ../share/roundup/templates/responsive/html/msg.index.html:3
msgid "List of messages - ${tracker}"
msgstr ""

#: ../share/roundup/templates/classic/html/msg.index.html:5
#: ../share/roundup/templates/devel/html/msg.index.html:5
#: ../share/roundup/templates/responsive/html/msg.index.html:5
msgid "Message listing"
msgstr ""

#: ../share/roundup/templates/classic/html/msg.item.html:6
#: ../share/roundup/templates/devel/html/msg.item.html:5
#: ../share/roundup/templates/responsive/html/msg.item.html:5
msgid "Message ${id} - ${tracker}"
msgstr ""

#: ../share/roundup/templates/classic/html/msg.item.html:9
#: ../share/roundup/templates/devel/html/msg.item.html:8
#: ../share/roundup/templates/responsive/html/msg.item.html:8
msgid "New Message - ${tracker}"
msgstr ""

#: ../share/roundup/templates/classic/html/msg.item.html:13
#: ../share/roundup/templates/devel/html/msg.item.html:12
#: ../share/roundup/templates/responsive/html/msg.item.html:12
msgid "New Message"
msgstr ""

#: ../share/roundup/templates/classic/html/msg.item.html:15
#: ../share/roundup/templates/devel/html/msg.item.html:14
#: ../share/roundup/templates/responsive/html/msg.item.html:14
msgid "New Message Editing"
msgstr ""

#: ../share/roundup/templates/classic/html/msg.item.html:18
#: ../share/roundup/templates/devel/html/msg.item.html:17
#: ../share/roundup/templates/responsive/html/msg.item.html:17
msgid "Message${id}"
msgstr ""

#: ../share/roundup/templates/classic/html/msg.item.html:21
#: ../share/roundup/templates/devel/html/msg.item.html:20
#: ../share/roundup/templates/responsive/html/msg.item.html:20
msgid "Message${id} Editing"
msgstr ""

#: ../share/roundup/templates/classic/html/msg.item.html:38
#: ../share/roundup/templates/devel/html/msg.item.html:37
#: ../share/roundup/templates/responsive/html/msg.item.html:36
msgid "Author"
msgstr ""

#: ../share/roundup/templates/classic/html/msg.item.html:43
#: ../share/roundup/templates/devel/html/msg.item.html:42
#: ../share/roundup/templates/responsive/html/msg.item.html:38
msgid "Recipients"
msgstr ""

#: ../share/roundup/templates/classic/html/msg.item.html:54
msgid "Content"
msgstr ""

#: ../share/roundup/templates/classic/html/page.html:54
#: ../share/roundup/templates/minimal/html/page.html:54
msgid "<b>Your Queries</b> (<a href=\"query?@template=edit\">edit</a>)"
msgstr ""

#: ../share/roundup/templates/classic/html/page.html:65
#: ../share/roundup/templates/minimal/html/page.html:65
msgid "Issues"
msgstr ""

#: ../share/roundup/templates/classic/html/page.html:67
#: ../share/roundup/templates/classic/html/page.html:107
#: ../share/roundup/templates/devel/html/page.html:48
#: ../share/roundup/templates/devel/html/page.html:96
#: ../share/roundup/templates/devel/html/page.html:143
#: ../share/roundup/templates/minimal/html/page.html:67
#: ../share/roundup/templates/minimal/html/page.html:107
#: ../share/roundup/templates/responsive/html/page.html:64
#: ../share/roundup/templates/responsive/html/page.html:113
#: ../share/roundup/templates/responsive/html/page.html:161
msgid "Create New"
msgstr ""

#: ../share/roundup/templates/classic/html/page.html:69
#: ../share/roundup/templates/devel/html/page.html:64
#: ../share/roundup/templates/devel/html/page.html:112
#: ../share/roundup/templates/minimal/html/page.html:69
#: ../share/roundup/templates/responsive/html/page.html:80
#: ../share/roundup/templates/responsive/html/page.html:129
msgid "Show Unassigned"
msgstr ""

#: ../share/roundup/templates/classic/html/page.html:81
#: ../share/roundup/templates/minimal/html/page.html:81
msgid "Show All"
msgstr ""

#: ../share/roundup/templates/classic/html/page.html:93
#: ../share/roundup/templates/minimal/html/page.html:93
msgid "Show issue:"
msgstr ""

#: ../share/roundup/templates/classic/html/page.html:110
#: ../share/roundup/templates/minimal/html/page.html:110
msgid "Edit Existing"
msgstr ""

#: ../share/roundup/templates/classic/html/page.html:116
#: ../share/roundup/templates/devel/html/page.html:224
#: ../share/roundup/templates/minimal/html/page.html:116
#: ../share/roundup/templates/responsive/html/page.html:241
msgid "Administration"
msgstr ""

#: ../share/roundup/templates/classic/html/page.html:118
#: ../share/roundup/templates/devel/html/page.html:227
#: ../share/roundup/templates/minimal/html/page.html:118
#: ../share/roundup/templates/responsive/html/page.html:244
msgid "Class List"
msgstr ""

#: ../share/roundup/templates/classic/html/page.html:122
#: ../share/roundup/templates/devel/html/page.html:231
#: ../share/roundup/templates/minimal/html/page.html:122
#: ../share/roundup/templates/responsive/html/page.html:248
msgid "User List"
msgstr ""

#: ../share/roundup/templates/classic/html/page.html:124
#: ../share/roundup/templates/devel/html/page.html:234
#: ../share/roundup/templates/minimal/html/page.html:124
#: ../share/roundup/templates/responsive/html/page.html:251
msgid "Add User"
msgstr ""

#: ../share/roundup/templates/classic/html/page.html:131
#: ../share/roundup/templates/classic/html/page.html:139
#: ../share/roundup/templates/devel/html/page.html:164
#: ../share/roundup/templates/devel/html/page.html:172
#: ../share/roundup/templates/minimal/html/page.html:131
#: ../share/roundup/templates/minimal/html/page.html:139
#: ../share/roundup/templates/responsive/html/page.html:188
msgid "Login"
msgstr ""

#: ../share/roundup/templates/classic/html/page.html:136
#: ../share/roundup/templates/devel/html/page.html:171
#: ../share/roundup/templates/minimal/html/page.html:138
msgid "Remember me?"
msgstr ""

#: ../share/roundup/templates/classic/html/page.html:147
#: ../share/roundup/templates/classic/html/user.register.html:68
#: ../share/roundup/templates/devel/html/page.html:182
#: ../share/roundup/templates/devel/html/user.register.html:75
#: ../share/roundup/templates/minimal/html/page.html:147
#: ../share/roundup/templates/minimal/html/user.register.html:65
#: ../share/roundup/templates/responsive/html/page.html:200
#: ../share/roundup/templates/responsive/html/user.register.html:74
msgid "Register"
msgstr ""

#: ../share/roundup/templates/classic/html/page.html:150
#: ../share/roundup/templates/devel/html/page.html:187
#: ../share/roundup/templates/minimal/html/page.html:150
#: ../share/roundup/templates/responsive/html/page.html:205
msgid "Lost&nbsp;your&nbsp;login?"
msgstr ""

#: ../share/roundup/templates/classic/html/page.html:155
#: ../share/roundup/templates/minimal/html/page.html:155
msgid "Hello, ${user}"
msgstr ""

#: ../share/roundup/templates/classic/html/page.html:157
msgid "Your Issues"
msgstr ""

#: ../share/roundup/templates/classic/html/page.html:169
#: ../share/roundup/templates/devel/html/page.html:209
#: ../share/roundup/templates/minimal/html/page.html:157
#: ../share/roundup/templates/responsive/html/page.html:226
msgid "Your Details"
msgstr ""

#: ../share/roundup/templates/classic/html/page.html:171
#: ../share/roundup/templates/devel/html/page.html:212
#: ../share/roundup/templates/minimal/html/page.html:159
#: ../share/roundup/templates/responsive/html/page.html:229
msgid "Logout"
msgstr ""

#: ../share/roundup/templates/classic/html/page.html:175
#: ../share/roundup/templates/minimal/html/page.html:163
msgid "Help"
msgstr ""

#: ../share/roundup/templates/classic/html/page.html:176
#: ../share/roundup/templates/minimal/html/page.html:164
msgid "Roundup docs"
msgstr ""

#: ../share/roundup/templates/classic/html/page.html:187
#: ../share/roundup/templates/devel/html/page.html:254
#: ../share/roundup/templates/minimal/html/page.html:175
#: ../share/roundup/templates/responsive/html/page.html:269
msgid "clear this message"
msgstr ""

#: ../share/roundup/templates/classic/html/page.html:251
#: ../share/roundup/templates/classic/html/page.html:264
#: ../share/roundup/templates/classic/html/page.html:282
#: ../share/roundup/templates/classic/html/page.html:296
#: ../share/roundup/templates/devel/html/page.html:316
#: ../share/roundup/templates/devel/html/page.html:329
#: ../share/roundup/templates/devel/html/page.html:347
#: ../share/roundup/templates/devel/html/page.html:361
#: ../share/roundup/templates/minimal/html/page.html:239
#: ../share/roundup/templates/minimal/html/page.html:254
#: ../share/roundup/templates/minimal/html/page.html:268
#: ../share/roundup/templates/responsive/html/page.html:331
#: ../share/roundup/templates/responsive/html/page.html:344
#: ../share/roundup/templates/responsive/html/page.html:362
#: ../share/roundup/templates/responsive/html/page.html:376
msgid "don't care"
msgstr ""

#: ../share/roundup/templates/classic/html/page.html:253
#: ../share/roundup/templates/classic/html/page.html:266
#: ../share/roundup/templates/classic/html/page.html:284
#: ../share/roundup/templates/classic/html/page.html:297
#: ../share/roundup/templates/devel/html/page.html:318
#: ../share/roundup/templates/devel/html/page.html:331
#: ../share/roundup/templates/devel/html/page.html:349
#: ../share/roundup/templates/devel/html/page.html:362
#: ../share/roundup/templates/minimal/html/page.html:241
#: ../share/roundup/templates/minimal/html/page.html:256
#: ../share/roundup/templates/minimal/html/page.html:269
#: ../share/roundup/templates/responsive/html/page.html:333
#: ../share/roundup/templates/responsive/html/page.html:346
#: ../share/roundup/templates/responsive/html/page.html:364
#: ../share/roundup/templates/responsive/html/page.html:377
msgid "------------"
msgstr ""

#: ../share/roundup/templates/classic/html/page.html:325
#: ../share/roundup/templates/devel/html/page.html:390
#: ../share/roundup/templates/minimal/html/page.html:297
#: ../share/roundup/templates/responsive/html/page.html:405
msgid "no value"
msgstr ""

#: ../share/roundup/templates/classic/html/query.edit.html:4
#: ../share/roundup/templates/devel/html/query.edit.html:3
#: ../share/roundup/templates/responsive/html/query.edit.html:3
msgid "\"Your Queries\" Editing - ${tracker}"
msgstr ""

#: ../share/roundup/templates/classic/html/query.edit.html:6
#: ../share/roundup/templates/devel/html/query.edit.html:5
#: ../share/roundup/templates/responsive/html/query.edit.html:5
msgid "\"Your Queries\" Editing"
msgstr ""

#: ../share/roundup/templates/classic/html/query.edit.html:12
#: ../share/roundup/templates/devel/html/query.edit.html:11
#: ../share/roundup/templates/responsive/html/query.edit.html:11
msgid "You are not allowed to edit queries."
msgstr ""

#: ../share/roundup/templates/classic/html/query.edit.html:58
#: ../share/roundup/templates/devel/html/query.edit.html:60
#: ../share/roundup/templates/responsive/html/query.edit.html:60
msgid "Query"
msgstr ""

#: ../share/roundup/templates/classic/html/query.edit.html:59
#: ../share/roundup/templates/devel/html/query.edit.html:61
#: ../share/roundup/templates/responsive/html/query.edit.html:61
msgid "Include in \"Your Queries\""
msgstr ""

#: ../share/roundup/templates/classic/html/query.edit.html:61
#: ../share/roundup/templates/devel/html/query.edit.html:63
#: ../share/roundup/templates/responsive/html/query.edit.html:63
msgid "Private to you?"
msgstr ""

#: ../share/roundup/templates/classic/html/query.edit.html:62
#: ../share/roundup/templates/devel/html/query.edit.html:64
#: ../share/roundup/templates/responsive/html/query.edit.html:64
msgid "delete/restore<br> (javascript<br>required)"
msgstr ""

#: ../share/roundup/templates/classic/html/query.edit.html:65
msgid "Queries I created"
msgstr ""

#: ../share/roundup/templates/classic/html/query.edit.html:77
#: ../share/roundup/templates/devel/html/query.edit.html:76
#: ../share/roundup/templates/responsive/html/query.edit.html:76
msgid "leave out"
msgstr ""

#: ../share/roundup/templates/classic/html/query.edit.html:78
#: ../share/roundup/templates/devel/html/query.edit.html:77
#: ../share/roundup/templates/responsive/html/query.edit.html:77
msgid "include"
msgstr ""

#: ../share/roundup/templates/classic/html/query.edit.html:82
#: ../share/roundup/templates/devel/html/query.edit.html:81
#: ../share/roundup/templates/responsive/html/query.edit.html:81
msgid "leave in"
msgstr ""

#: ../share/roundup/templates/classic/html/query.edit.html:87
#: ../share/roundup/templates/classic/html/query.edit.html:121
#: ../share/roundup/templates/devel/html/query.edit.html:99
#: ../share/roundup/templates/devel/html/query.edit.html:124
#: ../share/roundup/templates/responsive/html/query.edit.html:99
#: ../share/roundup/templates/responsive/html/query.edit.html:124
msgid "edit"
msgstr ""

#: ../share/roundup/templates/classic/html/query.edit.html:91
#: ../share/roundup/templates/devel/html/query.edit.html:103
#: ../share/roundup/templates/responsive/html/query.edit.html:103
msgid "yes"
msgstr ""

#: ../share/roundup/templates/classic/html/query.edit.html:93
#: ../share/roundup/templates/devel/html/query.edit.html:105
#: ../share/roundup/templates/responsive/html/query.edit.html:105
msgid "no"
msgstr ""

#: ../share/roundup/templates/classic/html/query.edit.html:99
#: ../share/roundup/templates/devel/html/query.edit.html:111
#: ../share/roundup/templates/responsive/html/query.edit.html:111
msgid "Delete"
msgstr ""

#: ../share/roundup/templates/classic/html/query.edit.html:105
msgid "Queries others created"
msgstr ""

#: ../share/roundup/templates/classic/html/query.edit.html:106
msgid "Owner"
msgstr ""

#: ../share/roundup/templates/classic/html/query.edit.html:118
#: ../share/roundup/templates/devel/html/query.edit.html:126
#: ../share/roundup/templates/responsive/html/query.edit.html:126
msgid "[not yours to edit]"
msgstr ""

#: ../share/roundup/templates/classic/html/query.edit.html:121
msgid "<a href=\"\">x</a>"
msgstr ""

#: ../share/roundup/templates/classic/html/query.edit.html:128
msgid "Active retired/private queries"
msgstr ""

#: ../share/roundup/templates/classic/html/query.edit.html:138
#: ../share/roundup/templates/classic/html/query.edit.html:139
#: ../share/roundup/templates/devel/html/query.edit.html:86
#: ../share/roundup/templates/responsive/html/query.edit.html:86
msgid "[query is retired]"
msgstr ""

#: ../share/roundup/templates/classic/html/query.edit.html:141
#: ../share/roundup/templates/classic/html/query.edit.html:156
msgid "Restore"
msgstr ""

#: ../share/roundup/templates/classic/html/query.edit.html:154
msgid "[query is private]"
msgstr ""

#: ../share/roundup/templates/classic/html/query.edit.html:168
#: ../share/roundup/templates/devel/html/query.edit.html:136
#: ../share/roundup/templates/responsive/html/query.edit.html:136
msgid "Save Selection"
msgstr ""

#: ../share/roundup/templates/classic/html/user.forgotten.html:3
#: ../share/roundup/templates/devel/html/user.forgotten.html:2
#: ../share/roundup/templates/responsive/html/user.forgotten.html:2
msgid "Password reset request - ${tracker}"
msgstr ""

#: ../share/roundup/templates/classic/html/user.forgotten.html:5
#: ../share/roundup/templates/devel/html/user.forgotten.html:4
#: ../share/roundup/templates/responsive/html/user.forgotten.html:4
msgid "Password reset request"
msgstr ""

#: ../share/roundup/templates/classic/html/user.forgotten.html:9
#: ../share/roundup/templates/devel/html/user.forgotten.html:10
#: ../share/roundup/templates/responsive/html/user.forgotten.html:10
msgid ""
"You have two options if you have forgotten your password. If you know the "
"email address you registered with, enter it below."
msgstr ""

#: ../share/roundup/templates/classic/html/user.forgotten.html:16
#: ../share/roundup/templates/devel/html/user.forgotten.html:22
#: ../share/roundup/templates/responsive/html/user.forgotten.html:22
msgid "Email Address:"
msgstr ""

#: ../share/roundup/templates/classic/html/user.forgotten.html:26
#: ../share/roundup/templates/classic/html/user.forgotten.html:36
#: ../share/roundup/templates/devel/html/user.forgotten.html:32
#: ../share/roundup/templates/devel/html/user.forgotten.html:46
#: ../share/roundup/templates/responsive/html/user.forgotten.html:32
#: ../share/roundup/templates/responsive/html/user.forgotten.html:46
msgid "Request password reset"
msgstr ""

#: ../share/roundup/templates/classic/html/user.forgotten.html:32
#: ../share/roundup/templates/devel/html/user.forgotten.html:38
#: ../share/roundup/templates/responsive/html/user.forgotten.html:38
msgid "Or, if you know your username, then enter it below."
msgstr ""

#: ../share/roundup/templates/classic/html/user.forgotten.html:35
#: ../share/roundup/templates/devel/html/user.forgotten.html:45
#: ../share/roundup/templates/responsive/html/user.forgotten.html:45
msgid "Username:"
msgstr ""

#: ../share/roundup/templates/classic/html/user.forgotten.html:41
#: ../share/roundup/templates/devel/html/user.forgotten.html:51
#: ../share/roundup/templates/responsive/html/user.forgotten.html:51
msgid ""
"A confirmation email will be sent to you - please follow the instructions "
"within it to complete the reset process."
msgstr ""

#: ../share/roundup/templates/classic/html/user.help-search.html:73
#: ../share/roundup/templates/devel/html/user.help-search.html:73
#: ../share/roundup/templates/devel/html/user.help.html:81
#: ../share/roundup/templates/responsive/html/user.help-search.html:73
#: ../share/roundup/templates/responsive/html/user.help.html:81
msgid "Pagesize"
msgstr ""

#: ../share/roundup/templates/classic/html/user.help.html:43
msgid ""
"Your browser is not capable of using frames; you should be redirected "
"immediately, or visit ${link}."
msgstr ""

#: ../share/roundup/templates/classic/html/user.index.html:3
#: ../share/roundup/templates/devel/html/user.index.html:2
#: ../share/roundup/templates/minimal/html/user.index.html:3
#: ../share/roundup/templates/responsive/html/user.index.html:2
msgid "User listing - ${tracker}"
msgstr ""

#: ../share/roundup/templates/classic/html/user.index.html:5
#: ../share/roundup/templates/devel/html/user.index.html:4
#: ../share/roundup/templates/minimal/html/user.index.html:5
#: ../share/roundup/templates/responsive/html/user.index.html:4
msgid "User listing"
msgstr ""

#: ../share/roundup/templates/classic/html/user.index.html:48
#: ../share/roundup/templates/devel/html/user.index.html:48
#: ../share/roundup/templates/minimal/html/user.index.html:19
#: ../share/roundup/templates/responsive/html/page.html:180
#: ../share/roundup/templates/responsive/html/user.index.html:49
msgid "Username"
msgstr ""

#: ../share/roundup/templates/classic/html/user.index.html:49
#: ../share/roundup/templates/devel/html/user.index.html:49
#: ../share/roundup/templates/responsive/html/user.index.html:50
msgid "Real name"
msgstr ""

#: ../share/roundup/templates/classic/html/user.index.html:50
#: ../share/roundup/templates/classic/html/user.register.html:47
#: ../share/roundup/templates/devel/html/user.index.html:50
#: ../share/roundup/templates/devel/html/user.register.html:54
#: ../share/roundup/templates/responsive/html/user.index.html:51
#: ../share/roundup/templates/responsive/html/user.register.html:53
msgid "Organisation"
msgstr ""

#: ../share/roundup/templates/classic/html/user.index.html:51
#: ../share/roundup/templates/devel/html/user.index.html:51
#: ../share/roundup/templates/minimal/html/user.index.html:20
#: ../share/roundup/templates/responsive/html/user.index.html:52
msgid "Email address"
msgstr ""

#: ../share/roundup/templates/classic/html/user.index.html:52
#: ../share/roundup/templates/devel/html/user.index.html:52
#: ../share/roundup/templates/responsive/html/user.index.html:53
msgid "Phone number"
msgstr ""

#: ../share/roundup/templates/classic/html/user.index.html:53
#: ../share/roundup/templates/devel/html/user.index.html:53
#: ../share/roundup/templates/responsive/html/user.index.html:54
msgid "Retire"
msgstr ""

#: ../share/roundup/templates/classic/html/user.index.html:72
#: ../share/roundup/templates/devel/html/user.index.html:66
#: ../share/roundup/templates/responsive/html/user.index.html:67
msgid "retire"
msgstr ""

#: ../share/roundup/templates/classic/html/user.item.html:9
#: ../share/roundup/templates/devel/html/user.item.html:8
#: ../share/roundup/templates/minimal/html/user.item.html:8
#: ../share/roundup/templates/responsive/html/user.item.html:8
msgid "User ${id}: ${title} - ${tracker}"
msgstr ""

#: ../share/roundup/templates/classic/html/user.item.html:12
#: ../share/roundup/templates/devel/html/user.item.html:11
#: ../share/roundup/templates/minimal/html/user.item.html:11
#: ../share/roundup/templates/responsive/html/user.item.html:11
msgid "New User - ${tracker}"
msgstr ""

#: ../share/roundup/templates/classic/html/user.item.html:21
#: ../share/roundup/templates/devel/html/user.item.html:20
#: ../share/roundup/templates/minimal/html/user.item.html:20
#: ../share/roundup/templates/responsive/html/user.item.html:20
msgid "New User"
msgstr ""

#: ../share/roundup/templates/classic/html/user.item.html:23
#: ../share/roundup/templates/devel/html/user.item.html:22
#: ../share/roundup/templates/minimal/html/user.item.html:22
#: ../share/roundup/templates/responsive/html/user.item.html:22
msgid "New User Editing"
msgstr ""

#: ../share/roundup/templates/classic/html/user.item.html:26
#: ../share/roundup/templates/devel/html/user.item.html:25
#: ../share/roundup/templates/minimal/html/user.item.html:25
#: ../share/roundup/templates/responsive/html/user.item.html:25
msgid "User${id}"
msgstr ""

#: ../share/roundup/templates/classic/html/user.item.html:29
#: ../share/roundup/templates/devel/html/user.item.html:28
#: ../share/roundup/templates/minimal/html/user.item.html:28
#: ../share/roundup/templates/responsive/html/user.item.html:28
msgid "User${id} Editing"
msgstr ""

#: ../share/roundup/templates/classic/html/user.item.html:80
#: ../share/roundup/templates/classic/html/user.register.html:35
#: ../share/roundup/templates/devel/html/user.item.html:78
#: ../share/roundup/templates/devel/html/user.register.html:42
#: ../share/roundup/templates/minimal/html/user.item.html:75
#: ../share/roundup/templates/minimal/html/user.register.html:43
#: ../share/roundup/templates/responsive/html/user.item.html:78
#: ../share/roundup/templates/responsive/html/user.register.html:41
msgid "Roles"
msgstr ""

#: ../share/roundup/templates/classic/html/user.item.html:88
#: ../share/roundup/templates/devel/html/user.item.html:86
#: ../share/roundup/templates/minimal/html/user.item.html:83
#: ../share/roundup/templates/responsive/html/user.item.html:86
msgid "(to give the user more than one role, enter a comma,separated,list)"
msgstr ""

#: ../share/roundup/templates/classic/html/user.item.html:109
msgid "(the default is ${zone})"
msgstr ""

#: ../share/roundup/templates/classic/html/user.item.html:130
#: ../share/roundup/templates/classic/html/user.register.html:55
#: ../share/roundup/templates/devel/html/user.item.html:126
#: ../share/roundup/templates/devel/html/user.register.html:62
#: ../share/roundup/templates/minimal/html/user.register.html:55
#: ../share/roundup/templates/responsive/html/user.item.html:126
#: ../share/roundup/templates/responsive/html/user.register.html:61
msgid "Alternate E-mail addresses<br>One address per line"
msgstr ""

#: ../share/roundup/templates/classic/html/user.register.html:4
#: ../share/roundup/templates/classic/html/user.register.html:7
#: ../share/roundup/templates/devel/html/user.register.html:3
#: ../share/roundup/templates/devel/html/user.register.html:6
#: ../share/roundup/templates/minimal/html/user.register.html:4
#: ../share/roundup/templates/minimal/html/user.register.html:7
#: ../share/roundup/templates/responsive/html/user.register.html:3
#: ../share/roundup/templates/responsive/html/user.register.html:6
msgid "Registering with ${tracker}"
msgstr ""

#: ../share/roundup/templates/classic/html/user.register.html:23
#: ../share/roundup/templates/devel/html/user.register.html:30
#: ../share/roundup/templates/minimal/html/user.register.html:31
#: ../share/roundup/templates/responsive/html/user.register.html:29
msgid "Login Name"
msgstr ""

#: ../share/roundup/templates/classic/html/user.register.html:27
#: ../share/roundup/templates/devel/html/user.register.html:34
#: ../share/roundup/templates/minimal/html/user.register.html:35
#: ../share/roundup/templates/responsive/html/user.register.html:33
msgid "Login Password"
msgstr ""

#: ../share/roundup/templates/classic/html/user.register.html:31
#: ../share/roundup/templates/devel/html/user.register.html:38
#: ../share/roundup/templates/minimal/html/user.register.html:39
#: ../share/roundup/templates/responsive/html/user.register.html:37
msgid "Confirm Password"
msgstr ""

#: ../share/roundup/templates/classic/html/user.register.html:43
#: ../share/roundup/templates/devel/html/user.register.html:50
#: ../share/roundup/templates/responsive/html/user.register.html:49
msgid "Phone"
msgstr ""

#: ../share/roundup/templates/classic/html/user.register.html:51
#: ../share/roundup/templates/devel/html/user.register.html:58
#: ../share/roundup/templates/minimal/html/user.register.html:51
#: ../share/roundup/templates/responsive/html/user.register.html:57
msgid "E-mail address"
msgstr ""

#: ../share/roundup/templates/classic/html/user.rego_progress.html:4
#: ../share/roundup/templates/devel/html/user.rego_progress.html:3
#: ../share/roundup/templates/minimal/html/user.rego_progress.html:4
#: ../share/roundup/templates/responsive/html/user.rego_progress.html:3
msgid "Registration in progress - ${tracker}"
msgstr ""

#: ../share/roundup/templates/classic/html/user.rego_progress.html:6
#: ../share/roundup/templates/devel/html/user.rego_progress.html:5
#: ../share/roundup/templates/minimal/html/user.rego_progress.html:6
#: ../share/roundup/templates/responsive/html/user.rego_progress.html:5
msgid "Registration in progress..."
msgstr ""

#: ../share/roundup/templates/classic/html/user.rego_progress.html:10
#: ../share/roundup/templates/devel/html/user.rego_progress.html:9
#: ../share/roundup/templates/minimal/html/user.rego_progress.html:10
#: ../share/roundup/templates/responsive/html/user.rego_progress.html:9
msgid ""
"You will shortly receive an email to confirm your registration. To complete "
"the registration process, visit the link indicated in the email."
msgstr ""

#: ../share/roundup/templates/classic/initial_data.py:5
#: ../share/roundup/templates/jinja2/initial_data.py:4
msgid "critical"
msgstr ""

#: ../share/roundup/templates/classic/initial_data.py:6
#: ../share/roundup/templates/jinja2/initial_data.py:5
msgid "urgent"
msgstr ""

#: ../share/roundup/templates/classic/initial_data.py:7
#: ../share/roundup/templates/jinja2/initial_data.py:6
msgid "bug"
msgstr ""

#: ../share/roundup/templates/classic/initial_data.py:8
#: ../share/roundup/templates/jinja2/initial_data.py:7
msgid "feature"
msgstr ""

#: ../share/roundup/templates/classic/initial_data.py:9
#: ../share/roundup/templates/jinja2/initial_data.py:8
msgid "wish"
msgstr ""

#: ../share/roundup/templates/classic/initial_data.py:12
#: ../share/roundup/templates/jinja2/initial_data.py:11
msgid "unread"
msgstr ""

#: ../share/roundup/templates/classic/initial_data.py:13
#: ../share/roundup/templates/jinja2/initial_data.py:12
msgid "deferred"
msgstr ""

#: ../share/roundup/templates/classic/initial_data.py:14
#: ../share/roundup/templates/jinja2/initial_data.py:13
msgid "chatting"
msgstr ""

#: ../share/roundup/templates/classic/initial_data.py:15
#: ../share/roundup/templates/jinja2/initial_data.py:14
msgid "need-eg"
msgstr ""

#: ../share/roundup/templates/classic/initial_data.py:16
#: ../share/roundup/templates/jinja2/initial_data.py:15
msgid "in-progress"
msgstr ""

#: ../share/roundup/templates/classic/initial_data.py:17
#: ../share/roundup/templates/jinja2/initial_data.py:16
msgid "testing"
msgstr ""

#: ../share/roundup/templates/classic/initial_data.py:18
#: ../share/roundup/templates/jinja2/initial_data.py:17
msgid "done-cbb"
msgstr ""

#: ../share/roundup/templates/classic/initial_data.py:19
#: ../share/roundup/templates/jinja2/initial_data.py:18
msgid "resolved"
msgstr ""

#: ../share/roundup/templates/devel/extensions/spambayes.py:66
#: ../share/roundup/templates/responsive/extensions/spambayes.py:66
msgid "Message classified as"
msgstr ""

#: ../share/roundup/templates/devel/extensions/spambayes.py:68
#: ../share/roundup/templates/responsive/extensions/spambayes.py:68
msgid "Unable to classify message, got error:"
msgstr ""

#: ../share/roundup/templates/devel/html/_generic.index.html:26
#: ../share/roundup/templates/responsive/html/_generic.index.html:26
msgid ""
"<p class=\"form-help\"> You may edit the contents of the ${classname} class "
"using this form. Commas, newlines and double quotes (\") must be handled "
"delicately. You may include commas and newlines by enclosing the values in "
"double-quotes (\"). Double quotes themselves must be quoted by doubling "
"(\"\"). </p> <p class=\"form-help\"> Multilink properties have their multiple "
"values colon (\":\") separated (... ,\"one:two:three\", ...) </p> <p class="
"\"form-help\"> Remove entries by deleting their line. Add new entries by "
"appending them to the table - put an X in the id column. </p>"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.index.html:3
#: ../share/roundup/templates/devel/html/bug.index.html:9
#: ../share/roundup/templates/responsive/html/bug.index.html:3
#: ../share/roundup/templates/responsive/html/bug.index.html:9
msgid "List of bugs"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.index.html:26
#: ../share/roundup/templates/devel/html/task.index.html:26
#: ../share/roundup/templates/responsive/html/bug.index.html:26
#: ../share/roundup/templates/responsive/html/bug.item.html:84
msgid "Severity"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.index.html:32
#: ../share/roundup/templates/devel/html/task.index.html:32
#: ../share/roundup/templates/responsive/html/bug.index.html:31
#: ../share/roundup/templates/responsive/html/bug.item.html:48
#: ../share/roundup/templates/responsive/html/task.index.html:31
#: ../share/roundup/templates/responsive/html/task.item.html:49
msgid "Components"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.index.html:33
#: ../share/roundup/templates/devel/html/task.index.html:33
#: ../share/roundup/templates/responsive/html/bug.index.html:32
#: ../share/roundup/templates/responsive/html/bug.item.html:113
msgid "Versions"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.index.html:35
#: ../share/roundup/templates/devel/html/task.index.html:35
#: ../share/roundup/templates/responsive/html/bug.index.html:34
#: ../share/roundup/templates/responsive/html/bug.item.html:130
#: ../share/roundup/templates/responsive/html/bug.item.html:172
#: ../share/roundup/templates/responsive/html/task.index.html:33
#: ../share/roundup/templates/responsive/html/task.item.html:106
#: ../share/roundup/templates/responsive/html/task.item.html:146
msgid "Resolution"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.index.html:39
#: ../share/roundup/templates/devel/html/task.index.html:39
msgid "Depends On"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.item.html:6
#: ../share/roundup/templates/responsive/html/bug.item.html:6
msgid "Bug ${id}: ${title} - ${tracker}"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.item.html:9
#: ../share/roundup/templates/responsive/html/bug.item.html:9
msgid "New Bug report - ${tracker}"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.item.html:13
#: ../share/roundup/templates/responsive/html/bug.item.html:13
msgid "New Bug"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.item.html:15
#: ../share/roundup/templates/responsive/html/bug.item.html:15
msgid "New Bug Editing"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.item.html:18
#: ../share/roundup/templates/responsive/html/bug.item.html:18
msgid "Bug ${id}"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.item.html:21
#: ../share/roundup/templates/responsive/html/bug.item.html:21
msgid "Bug ${id} Editing"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.item.html:57
msgid "<span>Type</span>:"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.item.html:63
msgid "<span>Severity</span>:"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.item.html:72
msgid "<span>Components</span>:"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.item.html:78
msgid "<span>Versions</span>:"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.item.html:91
msgid "<span>Status</span>:"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.item.html:97
msgid "<span>Resolution</span>:"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.item.html:104
#: ../share/roundup/templates/devel/html/task.item.html:79
#: ../share/roundup/templates/responsive/html/bug.item.html:132
#: ../share/roundup/templates/responsive/html/bug.item.html:183
#: ../share/roundup/templates/responsive/html/task.item.html:108
#: ../share/roundup/templates/responsive/html/task.item.html:157
msgid "Dependencies"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.item.html:116
#: ../share/roundup/templates/devel/html/task.item.html:91
msgid "x:"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.item.html:126
#: ../share/roundup/templates/devel/html/task.item.html:101
#: ../share/roundup/templates/responsive/html/bug.item.html:204
#: ../share/roundup/templates/responsive/html/task.item.html:178
msgid "View"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.item.html:150
#: ../share/roundup/templates/responsive/html/bug.item.html:249
msgid "Keywords:"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.item.html:156
#: ../share/roundup/templates/devel/html/task.item.html:125
msgid "Comment"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.item.html:171
#: ../share/roundup/templates/devel/html/task.item.html:140
#: ../share/roundup/templates/responsive/html/bug.item.html:287
#: ../share/roundup/templates/responsive/html/task.item.html:254
msgid "File Description"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.item.html:218
#: ../share/roundup/templates/devel/html/task.item.html:165
#: ../share/roundup/templates/responsive/html/bug.item.html:310
#: ../share/roundup/templates/responsive/html/task.item.html:277
msgid ""
"Created on <b>${creation}</b> by <b>${creator}</b>, last changed <b>"
"${activity}</b> by <b>${actor}</b>."
msgstr ""

#: ../share/roundup/templates/devel/html/bug.item.html:226
#: ../share/roundup/templates/devel/html/file.index.html:10
#: ../share/roundup/templates/devel/html/file.item.html:27
#: ../share/roundup/templates/devel/html/keyword.index.html:26
#: ../share/roundup/templates/devel/html/patch.index.html:11
#: ../share/roundup/templates/devel/html/patch.index.html:44
#: ../share/roundup/templates/devel/html/patch.item.html:27
#: ../share/roundup/templates/devel/html/patch.item.html:115
#: ../share/roundup/templates/devel/html/task.item.html:173
#: ../share/roundup/templates/responsive/html/bug.item.html:318
#: ../share/roundup/templates/responsive/html/file.index.html:10
#: ../share/roundup/templates/responsive/html/file.item.html:27
#: ../share/roundup/templates/responsive/html/keyword.index.html:26
#: ../share/roundup/templates/responsive/html/patch.index.html:11
#: ../share/roundup/templates/responsive/html/patch.index.html:44
#: ../share/roundup/templates/responsive/html/patch.item.html:27
#: ../share/roundup/templates/responsive/html/patch.item.html:113
#: ../share/roundup/templates/responsive/html/task.item.html:285
msgid "Description"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.item.html:295
#: ../share/roundup/templates/devel/html/task.item.html:208
#: ../share/roundup/templates/responsive/html/bug.item.html:352
#: ../share/roundup/templates/responsive/html/task.item.html:321
msgid "msg${id}"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.item.html:297
#: ../share/roundup/templates/devel/html/task.item.html:210
#: ../share/roundup/templates/responsive/html/bug.item.html:356
#: ../share/roundup/templates/responsive/html/task.item.html:325
msgid "Author: ${author} ()"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.search.html:2
#: ../share/roundup/templates/responsive/html/bug.search.html:2
msgid "Bug searching - ${tracker}"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.search.html:4
#: ../share/roundup/templates/responsive/html/bug.search.html:4
msgid "Bug searching"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.search.html:94
#: ../share/roundup/templates/devel/html/task.search.html:94
#: ../share/roundup/templates/responsive/html/bug.search.html:94
#: ../share/roundup/templates/responsive/html/task.search.html:94
msgid "Last actor:"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.search.html:105
#: ../share/roundup/templates/devel/html/task.search.html:105
#: ../share/roundup/templates/responsive/html/bug.search.html:105
#: ../share/roundup/templates/responsive/html/task.search.html:105
msgid "Nosy list member:"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.search.html:115
#: ../share/roundup/templates/devel/html/task.search.html:115
#: ../share/roundup/templates/responsive/html/bug.search.html:115
#: ../share/roundup/templates/responsive/html/task.search.html:115
msgid "Type:"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.search.html:128
#: ../share/roundup/templates/devel/html/task.search.html:128
#: ../share/roundup/templates/responsive/html/bug.search.html:128
#: ../share/roundup/templates/responsive/html/task.search.html:128
msgid "Components:"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.search.html:141
#: ../share/roundup/templates/devel/html/task.search.html:141
#: ../share/roundup/templates/responsive/html/bug.search.html:141
msgid "Versions:"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.search.html:167
#: ../share/roundup/templates/devel/html/task.search.html:167
#: ../share/roundup/templates/responsive/html/bug.search.html:167
#: ../share/roundup/templates/responsive/html/task.search.html:141
msgid "Depends on:"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.search.html:196
#: ../share/roundup/templates/devel/html/task.search.html:196
#: ../share/roundup/templates/responsive/html/bug.search.html:196
msgid "not set"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.search.html:223
#: ../share/roundup/templates/devel/html/task.search.html:223
#: ../share/roundup/templates/responsive/html/bug.search.html:223
#: ../share/roundup/templates/responsive/html/task.search.html:184
msgid "not closed"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.search.html:237
#: ../share/roundup/templates/devel/html/task.item.html:73
#: ../share/roundup/templates/devel/html/task.search.html:237
#: ../share/roundup/templates/responsive/html/bug.search.html:237
#: ../share/roundup/templates/responsive/html/task.search.html:198
msgid "Resolution:"
msgstr ""

#: ../share/roundup/templates/devel/html/bug.search.html:297
#: ../share/roundup/templates/responsive/html/bug.search.html:297
msgid "*: The \"all text\" field will look in message bodies and bug titles"
msgstr ""

#: ../share/roundup/templates/devel/html/help.html:11
#: ../share/roundup/templates/responsive/html/help.html:14
msgid "${what} help - ${tracker}"
msgstr ""

#: ../share/roundup/templates/devel/html/keyword.index.html:3
#: ../share/roundup/templates/devel/html/keyword.index.html:9
#: ../share/roundup/templates/responsive/html/keyword.index.html:3
#: ../share/roundup/templates/responsive/html/keyword.index.html:9
msgid "List of keywords"
msgstr ""

#: ../share/roundup/templates/devel/html/keyword.item.html:8
#: ../share/roundup/templates/responsive/html/keyword.item.html:8
msgid "Keyword ${id}: ${title} - ${tracker}"
msgstr ""

#: ../share/roundup/templates/devel/html/keyword.item.html:11
#: ../share/roundup/templates/responsive/html/keyword.item.html:11
msgid "New Keyword - ${tracker}"
msgstr ""

#: ../share/roundup/templates/devel/html/keyword.item.html:19
#: ../share/roundup/templates/responsive/html/keyword.item.html:19
msgid "New Keyword"
msgstr ""

#: ../share/roundup/templates/devel/html/keyword.item.html:21
#: ../share/roundup/templates/responsive/html/keyword.item.html:21
msgid "New Keyword Editing"
msgstr ""

#: ../share/roundup/templates/devel/html/keyword.item.html:24
#: ../share/roundup/templates/responsive/html/keyword.item.html:24
msgid "Keyword${id}"
msgstr ""

#: ../share/roundup/templates/devel/html/keyword.item.html:27
#: ../share/roundup/templates/responsive/html/keyword.item.html:27
msgid "Keyword${id} Editing"
msgstr ""

#: ../share/roundup/templates/devel/html/keyword.item.html:57
#: ../share/roundup/templates/responsive/html/keyword.item.html:57
msgid "Description:"
msgstr ""

#: ../share/roundup/templates/devel/html/milestone.index.html:3
#: ../share/roundup/templates/devel/html/milestone.index.html:9
#: ../share/roundup/templates/responsive/html/milestone.index.html:3
#: ../share/roundup/templates/responsive/html/milestone.index.html:9
msgid "List of milestones"
msgstr ""

#: ../share/roundup/templates/devel/html/msg.item.html:52
#: ../share/roundup/templates/responsive/html/msg.item.html:42
msgid "Message-id"
msgstr ""

#: ../share/roundup/templates/devel/html/msg.item.html:57
#: ../share/roundup/templates/responsive/html/msg.item.html:44
msgid "In-reply-to"
msgstr ""

#: ../share/roundup/templates/devel/html/page.html:45
#: ../share/roundup/templates/responsive/html/page.html:61
msgid "Bugs"
msgstr ""

#: ../share/roundup/templates/devel/html/page.html:51
#: ../share/roundup/templates/devel/html/page.html:99
#: ../share/roundup/templates/devel/html/page.html:146
#: ../share/roundup/templates/responsive/html/page.html:67
#: ../share/roundup/templates/responsive/html/page.html:116
#: ../share/roundup/templates/responsive/html/page.html:164
msgid "Show Open"
msgstr ""

#: ../share/roundup/templates/devel/html/page.html:83
msgid "Show bug:"
msgstr ""

#: ../share/roundup/templates/devel/html/page.html:93
#: ../share/roundup/templates/responsive/html/page.html:111
msgid "Tasks"
msgstr ""

#: ../share/roundup/templates/devel/html/page.html:130
msgid "Show task:"
msgstr ""

#: ../share/roundup/templates/devel/html/page.html:140
#: ../share/roundup/templates/responsive/html/page.html:159
msgid "Milestones"
msgstr ""

#: ../share/roundup/templates/devel/html/page.html:160
msgid "User"
msgstr ""

#: ../share/roundup/templates/devel/html/page.html:196
#: ../share/roundup/templates/responsive/html/page.html:213
msgid "Bugs assigned to you"
msgstr ""

#: ../share/roundup/templates/devel/html/page.html:216
#: ../share/roundup/templates/responsive/html/page.html:233
msgid ""
"<b>Your Queries</b> (<a class=\"nomargin\" href=\"query?@template=edit"
"\">edit</a>)"
msgstr ""

#: ../share/roundup/templates/devel/html/page.html:237
#: ../share/roundup/templates/responsive/html/page.html:254
msgid "Edit Keywords"
msgstr ""

#: ../share/roundup/templates/devel/html/patch.index.html:3
#: ../share/roundup/templates/devel/html/patch.index.html:36
#: ../share/roundup/templates/responsive/html/patch.index.html:3
#: ../share/roundup/templates/responsive/html/patch.index.html:36
msgid "List of patches - ${tracker}"
msgstr ""

#: ../share/roundup/templates/devel/html/patch.index.html:5
#: ../share/roundup/templates/devel/html/patch.index.html:38
#: ../share/roundup/templates/responsive/html/patch.index.html:5
#: ../share/roundup/templates/responsive/html/patch.index.html:38
msgid "List of patches"
msgstr ""

#: ../share/roundup/templates/devel/html/patch.item.html:2
#: ../share/roundup/templates/devel/html/patch.item.html:90
#: ../share/roundup/templates/responsive/html/patch.item.html:2
#: ../share/roundup/templates/responsive/html/patch.item.html:88
msgid "Patch display - ${tracker}"
msgstr ""

#: ../share/roundup/templates/devel/html/patch.item.html:4
#: ../share/roundup/templates/responsive/html/patch.item.html:4
msgid "Modify patch"
msgstr ""

#: ../share/roundup/templates/devel/html/patch.item.html:37
#: ../share/roundup/templates/devel/html/patch.item.html:125
#: ../share/roundup/templates/responsive/html/patch.item.html:37
#: ../share/roundup/templates/responsive/html/patch.item.html:123
msgid "Repository"
msgstr ""

#: ../share/roundup/templates/devel/html/patch.item.html:41
#: ../share/roundup/templates/devel/html/patch.item.html:129
#: ../share/roundup/templates/responsive/html/patch.item.html:41
#: ../share/roundup/templates/responsive/html/patch.item.html:127
msgid "Repository revision"
msgstr ""

#: ../share/roundup/templates/devel/html/patch.item.html:92
#: ../share/roundup/templates/responsive/html/patch.item.html:90
msgid "Patch display"
msgstr ""

#: ../share/roundup/templates/devel/html/query.html:21
#: ../share/roundup/templates/responsive/html/query.html:21
msgid "${start}.. ${end} out of ${total}"
msgstr ""

#: ../share/roundup/templates/devel/html/task.index.html:3
#: ../share/roundup/templates/devel/html/task.index.html:9
#: ../share/roundup/templates/responsive/html/task.index.html:3
#: ../share/roundup/templates/responsive/html/task.index.html:9
msgid "List of tasks"
msgstr ""

#: ../share/roundup/templates/devel/html/task.item.html:6
#: ../share/roundup/templates/responsive/html/task.item.html:6
msgid "Task ${id}: ${title} - ${tracker}"
msgstr ""

#: ../share/roundup/templates/devel/html/task.item.html:9
#: ../share/roundup/templates/responsive/html/task.item.html:9
msgid "New Task - ${tracker}"
msgstr ""

#: ../share/roundup/templates/devel/html/task.item.html:13
#: ../share/roundup/templates/responsive/html/task.item.html:13
msgid "New Task"
msgstr ""

#: ../share/roundup/templates/devel/html/task.item.html:15
#: ../share/roundup/templates/responsive/html/task.item.html:15
msgid "New Task Editing"
msgstr ""

#: ../share/roundup/templates/devel/html/task.item.html:18
#: ../share/roundup/templates/responsive/html/task.item.html:18
msgid "Task ${id}"
msgstr ""

#: ../share/roundup/templates/devel/html/task.item.html:21
#: ../share/roundup/templates/responsive/html/task.item.html:21
msgid "Task${id} Editing"
msgstr ""

#: ../share/roundup/templates/devel/html/task.item.html:55
#: ../share/roundup/templates/devel/html/task.item.html:59
#: ../share/roundup/templates/devel/html/task.item.html:70
msgid ":"
msgstr ""

#: ../share/roundup/templates/devel/html/task.search.html:2
#: ../share/roundup/templates/responsive/html/task.search.html:2
msgid "Task searching - ${tracker}"
msgstr ""

#: ../share/roundup/templates/devel/html/task.search.html:4
#: ../share/roundup/templates/responsive/html/task.search.html:4
msgid "Task searching"
msgstr ""

#: ../share/roundup/templates/devel/html/task.search.html:297
#: ../share/roundup/templates/responsive/html/task.search.html:258
msgid "*: The \"all text\" field will look in message bodies and task titles"
msgstr ""

#: ../share/roundup/templates/devel/html/user.forgotten.html:13
#: ../share/roundup/templates/responsive/html/user.forgotten.html:13
msgid ""
"If your user was automatically created during import from the old sourceforge "
"tracker, your e-mail address is &lt;Sourceforge username&gt;@users."
"sourceforge.net. The mail address associated with your account can be changed "
"after login."
msgstr ""

#: ../share/roundup/templates/devel/html/user.forgotten.html:40
#: ../share/roundup/templates/responsive/html/user.forgotten.html:40
msgid ""
"If you have previously created or modified issue reports in the sourceforge "
"issue tracker, you have an account here with the same username as your "
"sourceforge username."
msgstr ""

#: ../share/roundup/templates/minimal/html/home.html:2
msgid "Tracker home - ${tracker}"
msgstr ""

#: ../share/roundup/templates/minimal/html/home.html:4
msgid "Tracker home"
msgstr ""

#: ../share/roundup/templates/minimal/html/home.html:16
msgid "Please select from one of the menu options on the left."
msgstr ""

#: ../share/roundup/templates/minimal/html/home.html:19
msgid "Please log in or register."
msgstr ""

#: ../share/roundup/templates/responsive/html/bug.index.html:84
#: ../share/roundup/templates/responsive/html/bug.index.html:89
#: ../share/roundup/templates/responsive/html/milestone.index.html:58
#: ../share/roundup/templates/responsive/html/milestone.index.html:63
#: ../share/roundup/templates/responsive/html/task.index.html:78
#: ../share/roundup/templates/responsive/html/task.index.html:83
msgid "Previous"
msgstr ""

#: ../share/roundup/templates/responsive/html/bug.index.html:93
#: ../share/roundup/templates/responsive/html/milestone.index.html:67
#: ../share/roundup/templates/responsive/html/task.index.html:87
msgid "<a href=\"#\">${start}..${end} out of ${total}</a>"
msgstr ""

#: ../share/roundup/templates/responsive/html/bug.index.html:96
#: ../share/roundup/templates/responsive/html/bug.index.html:101
#: ../share/roundup/templates/responsive/html/milestone.index.html:70
#: ../share/roundup/templates/responsive/html/milestone.index.html:75
#: ../share/roundup/templates/responsive/html/task.index.html:90
#: ../share/roundup/templates/responsive/html/task.index.html:95
msgid "Next"
msgstr ""

#: ../share/roundup/templates/responsive/html/bug.item.html:50
msgid "Version"
msgstr ""

#: ../share/roundup/templates/responsive/html/bug.item.html:100
#: ../share/roundup/templates/responsive/html/task.item.html:89
msgid "component"
msgstr ""

#: ../share/roundup/templates/responsive/html/bug.item.html:138
#: ../share/roundup/templates/responsive/html/task.item.html:114
msgid "Assigned to"
msgstr ""

#: ../share/roundup/templates/responsive/html/bug.item.html:140
#: ../share/roundup/templates/responsive/html/task.item.html:116
msgid "Nosy list"
msgstr ""

#: ../share/roundup/templates/responsive/html/bug.item.html:260
#: ../share/roundup/templates/responsive/html/task.item.html:227
msgid "<span class=\"badge badge-inverse\">Comment</span> &nbsp;"
msgstr ""

#: ../share/roundup/templates/responsive/html/page.html:100
msgid "Show bug"
msgstr ""

#: ../share/roundup/templates/responsive/html/page.html:148
msgid "Show task"
msgstr ""

#: ../share/roundup/templates/responsive/html/page.html:181
msgid "Password"
msgstr ""

Roundup Issue Tracker: http://roundup-tracker.org/